123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744 |
- using Aitex.Common.Util;
- using Aitex.Core.RT.Log;
- using Aitex.Core.Util;
- using MECF.Framework.Common.Beckhoff.AxisProvider;
- using MECF.Framework.Common.Device.Galil;
- using MECF.Framework.Common.Net;
- using MECF.Framework.Common.Simulator;
- using MECF.Framework.Simulator.Core.Driver;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
- namespace CyberX8_Simulator.Devices
- {
- public class GalilSocketSimulator : SocketDeviceSimulator
- {
- #region 常量
- //最大运动轴数量(abcdefg)
- private const int MAX_AXIS_NUM = 8;
- //GalilControllerData最大数据长度
- private const int MAX_CONTROL_DATA_LENGTH_21 = 264;
- private const int MAX_CONTROL_DATA_LENGTH_40 = 366;
- //GalilAxisData最大数据长度
- private const int MAX_AXIS_DATA_LENGTH_21 = 28;
- private const int MAX_AXIS_DATA_LENGTH_40 = 36;
- //GalilType
- private const string GALIL_21 = "Galil21";
- private const string GALIL_40 = "Galil40";
- private const string TARGET_VELOCITY = "TargetVelocity";
- private const string TARGET_ACCEL = "TargetAcceleration";
- private const string TARGET_DECEL = "TargetDeceleration";
- private const string TARGET_POSITION = "TargetPosition";
- private const string SWITCH_SIGNAL = "SwitchSignal";
- private const string ACTUAL_POSITION = "ActualPosition";
- private const string AUXILIARY_POSITION = "AuxiliaryPosition";
- private const string HOMING_SIGNAL = "HomingSignal";
- private const string FI_HOMING_SIGNAL = "FIHomingSignal";
- private const string MOTION_SIGNAL = "MotionSignal";
- private const string STOP_SIGNAL = "StopSignal";
-
- #endregion
- #region 内部变量
- private IByteTransform byteTransform = new BigEndianByteTransformBase();
- /// <summary>
- /// Galil数据
- /// </summary>
- private GalilControllerData _galilControlData = new GalilControllerData();
- /// <summary>
- /// Axis名称字典(key:axisName, value:index)
- /// </summary>
- private Dictionary<string, int> _axisNameIndexDic = new Dictionary<string, int>();
- /// <summary>
- /// Axis名称列表(index - axisName)
- /// </summary>
- private string[] _nameAxisList = new string[MAX_AXIS_NUM];
- /// <summary>
- /// ModuleName
- /// </summary>
- /// <param name="port"></param>
- private string _moduleName;
- /// <summary>
- /// Galil Type
- /// </summary>
- private string _galilType;
- /// <summary>
- /// GalilControllerData数据长度
- /// </summary>
- private int _controlDataLength;
- /// <summary>
- /// GalilAxisDatas数据长度
- /// </summary>
- private int _axisDataLength;
- /// <summary>
- /// MotorPosition比例系数字典(index - motorPositionRate)
- /// </summary>
- private Dictionary<string, double> _motorPositionRateDic = new Dictionary<string, double>();
- /// <summary>
- /// Velocity比例系数字典(index - motorPositionRate)
- /// </summary>
- private Dictionary<string, double> _velocityRateDic = new Dictionary<string, double>();
- /// <summary>
- /// Key:dataName - Value:GalilDI
- /// </summary>
- public Dictionary<string, GalilDI> InputDataNameDIDic = new Dictionary<string, GalilDI>();
- #endregion
- /// <summary>
- /// 构造函数
- /// </summary>
- /// <param name="port"></param>
- public GalilSocketSimulator(int port) :base(port)
- {
- InitData(port);
- }
- /// <summary>
- /// 解析信息
- /// </summary>
- /// <param name="data"></param>
- protected override void ProcessUnsplitMessage(byte[] data)
- {
- string cmdStr = ASCIIEncoding.ASCII.GetString(data);
- if (CheckCmdValid(cmdStr))
- {
- var cmdOperation = AnalyseCommand(cmdStr);
- byte[] response;
- if(cmdOperation.Item1 == "QR")
- {
- //Read
- response = CreateReadResponse(_galilControlData);
- }
- else
- {
- //Write
- SetOperation(cmdOperation.Item1, cmdOperation.Item2, cmdOperation.Item3);
- response = CreateWriteResponse();
- }
- OnWriteMessage(response);
- }
- else
- {
- OnWriteMessage(CreateError());
- }
- }
- /// <summary>
- /// 读回复
- /// </summary>
- /// <param name="flag"></param>
- /// <param name="channel"></param>
- /// <param name="command"></param>
- /// <param name="registerCount"></param>
- /// <param name="values"></param>
- /// <returns></returns>
- private byte[] CreateReadResponse(GalilControllerData data)
- {
- //数据头(4 bytes)
- int headLength = 4;
- byte[] result = new byte[headLength + _controlDataLength];
- result[0] = 0x00;
- result[1] = 0x00;
- short dataLength = (short)(headLength + _controlDataLength);
- Array.Copy(byteTransform.GetBytes(dataLength), 0, result, 2, 2);
- //数据体(MAX_CONTROL_DATA_LENGTH bytes)
- switch (_galilType)
- {
- case GALIL_21:
- Array.Copy(CodeControlData21(data), 0, result, 4, MAX_CONTROL_DATA_LENGTH_21);
- break;
- case GALIL_40:
- Array.Copy(CodeControlData40(data), 0, result, 4, MAX_CONTROL_DATA_LENGTH_40);
- break;
- default:
- break;
- }
- return result;
- }
- /// <summary>
- /// 写回复
- /// </summary>
- /// <param name="flag"></param>
- /// <param name="channel"></param>
- /// <param name="command"></param>
- /// <param name="startAddress"></param>
- /// <param name="value"></param>
- /// <returns></returns>
- private byte[] CreateWriteResponse()
- {
- //数据头(1 bytes)
- int headLength = 1;
- byte[] result = new byte[headLength];
- result[0] = 0x3A;
- return result;
- }
- /// <summary>
- /// 错误回复
- /// </summary>
- /// <param name="flag"></param>
- /// <param name="channel"></param>
- /// <param name="command"></param>
- /// <param name="error"></param>
- /// <returns></returns>
- private byte[] CreateError()
- {
- int headLength = 1;
- byte[] result = new byte[headLength];
- //Command not valid in program
- result[0] = 0x03;
- return result;
- }
- /// <summary>
- /// 初始化
- /// </summary>
- private void InitData(int port)
- {
- //初始化AxisData(最大MAX_AXIS_NUM个axis)
- _galilControlData.GalilAxisDatas = new List<GalilAxisData>();
- for (int i = 0; i < MAX_AXIS_NUM; i++)
- {
- _galilControlData.GalilAxisDatas.Add(new GalilAxisData());
- _galilControlData.GalilAxisDatas[i].Status = 0x00;
- }
- _galilControlData.Inputs = new byte[10];
- _galilControlData.Outputs = new byte[10];
- //电机数据更新事件
- MotorSimulator.Instance.OnUpdateMotionDatasChanged += UpdateRealTimeMotionData;
- MotorSimulator.Instance.OnUpdateInputDatasChanged += UpdateInputData;
- //加载GalilControllerCfg-Simulator.xml
- try
- {
- string oldXmlPath = PathManager.GetCfgDir();
- string newXmlPath = oldXmlPath.Replace("CyberX8_Simulator", "CyberX8_RT") + "Devices\\GalilControllerCfg-Simulator.xml";
- GalilControllerCfg cfg = CustomXmlSerializer.Deserialize<GalilControllerCfg>(new FileInfo(newXmlPath));
- if(cfg != null)
- {
- foreach (GalilDeviceConfig config in cfg.GalilDeviceConfigs)
- {
- if (port == config.Port)
- {
- _moduleName = config.Module;
- _galilType = config.GalilType;
- foreach (GalilAxisConfig item in config.GalilAxises)
- {
- _axisNameIndexDic[item.Name] = item.Index;
- _nameAxisList[item.Index] = item.Name;
- }
- if (config.GalilDigIn != null && config.GalilDigIn.DIs.Count != 0)
- {
- foreach (var items in config.GalilDigIn.DIs)
- {
- InputDataNameDIDic[items.Name] = items;
- }
- }
-
- }
- }
- }
- }
- catch
- {
- LOG.WriteLog(eEvent.ERR_GALIL, "Galil", "Load galil GalilControllerCfg-Simulator.xml failed");
- }
- //加载AxisProviderCfg.xml
- try
- {
- string oldXmlPath = PathManager.GetCfgDir();
- string newXmlPath = oldXmlPath.Replace("CyberX8_Simulator", "CyberX8_RT") + "Devices\\AxisProviderCfg.xml";
- BeckhoffAxisProviderCfg axisProviderCfg = CustomXmlSerializer.Deserialize<BeckhoffAxisProviderCfg>(new FileInfo(newXmlPath));
- if (axisProviderCfg != null)
- {
- foreach (BeckhoffProviderAxis item in axisProviderCfg.Axes)
- {
- for (int i = 0; i < MAX_AXIS_NUM; i++)
- {
- if (_nameAxisList[i] == item.Name)
- {
- _motorPositionRateDic[item.Name] = item.MotorPositionRate;
- _velocityRateDic[item.Name] = item.VelocityRate;
- }
- }
- }
- }
- }
- catch
- {
- LOG.WriteLog(eEvent.ERR_AXIS, "axisProvider", "Load AxisProviderCfg.xml failed");
- }
- //初始化对应Galiltype数据
- if (_galilType == GALIL_40)
- {
- _controlDataLength = MAX_CONTROL_DATA_LENGTH_40;
- _axisDataLength = MAX_AXIS_DATA_LENGTH_40;
- _galilControlData.SBlocks = new byte[10];
- _galilControlData.TBlocks = new byte[10];
- }
- else
- {
- _controlDataLength = MAX_CONTROL_DATA_LENGTH_21;
- _axisDataLength = MAX_AXIS_DATA_LENGTH_21;
- _galilControlData.SBlocks = new byte[8];
- _galilControlData.TBlocks = new byte[8];
- }
-
- }
- #region Galil编码
- /// <summary>
- /// GalilControllerData编码(Galil21)
- /// </summary>
- /// <returns></returns>
- private byte[] CodeControlData21(GalilControllerData ctrlData)
- {
- byte[] result = new byte[MAX_CONTROL_DATA_LENGTH_21];
- int index = 0;
- //Sample(2 bytes)
- Array.Copy(BitConverter.GetBytes(ctrlData.Sample), 0, result, index, 2);
- index += 2;
- //Inputs(1*10 bytes)
- Array.Copy(ctrlData.Inputs, 0, result, index, 10);
- index += 10;
- //Outputs(1*10 bytes)
- Array.Copy(ctrlData.Outputs, 0, result, index, 10);
- index += 10;
- //Error Code(1 bytes)
- result[13] = ctrlData.ErrorCode;
- index++;
- //General Status(1 bytes)
- result[14] = ctrlData.Status;
- index++;
- //S Block(2+2+4=8 bytes)
- Array.Copy(ctrlData.SBlocks, 0, result, 15, 8);
- index += 8;
- //T Block(2+2+4=8 bytes)
- Array.Copy(ctrlData.TBlocks, 0, result, 23, 8);
- index += 8;
- //Axis Datas(28 * 8 bytes)
- for (int i = 0; i < MAX_AXIS_NUM; i++)
- {
- Array.Copy(CodeAxisData21(ctrlData.GalilAxisDatas[i]), 0, result, index, MAX_AXIS_DATA_LENGTH_21);
- index += MAX_AXIS_DATA_LENGTH_21;
- }
- return result;
- }
- /// <summary>
- /// GalilAxisData编码(Galil21)
- /// </summary>
- /// <param name="axisData"></param>
- /// <returns></returns>
- private byte[] CodeAxisData21(GalilAxisData axisData)
- {
- byte[] result = new byte[MAX_AXIS_DATA_LENGTH_21];
- int index = 0;
- //Status(2 bytes)
- Array.Copy(byteTransform.GetBytes(axisData.Status), 0, result, index, 2);
- index += 2;
- //Switches(1 bytes)
- result[index] = axisData.Switches;
- index++;
- //Stop Code(1 bytes)
- result[index] = axisData.StopCode;
- index++;
- //Reference Position(4 bytes)
- Array.Copy(BitConverter.GetBytes(axisData.ReferencePosition), 0, result, index, 4);
- index += 4;
- //Motor Position(4 bytes)
- Array.Copy(BitConverter.GetBytes(axisData.MotorPosition), 0, result, index, 4);
- index += 4;
- //Position Error
- Array.Copy(BitConverter.GetBytes(axisData.PositionError), 0, result, index, 4);
- index += 4;
- //Auxiliary Position
- Array.Copy(BitConverter.GetBytes(axisData.AuxiliaryPosition), 0, result, index, 4);
- index += 4;
- //Velocity
- Array.Copy(BitConverter.GetBytes(axisData.Velocity), 0, result, index, 4);
- index += 4;
- //Torque
- Array.Copy(BitConverter.GetBytes(axisData.Torque), 0, result, index, 2);
- index += 2;
- //Analog
- Array.Copy(BitConverter.GetBytes(axisData.Res), 0, result, index, 2);
- return result;
- }
- /// <summary>
- /// GalilControllerData编码(Galil40)
- /// </summary>
- /// <returns></returns>
- private byte[] CodeControlData40(GalilControllerData ctrlData)
- {
- byte[] result = new byte[MAX_CONTROL_DATA_LENGTH_40];
- int index = 0;
- //Sample(2 bytes)
- Array.Copy(BitConverter.GetBytes(ctrlData.Sample), 0, result, index, 2);
- index += 2;
- //Inputs(1*10 bytes)
- Array.Copy(ctrlData.Inputs, 0, result, index, 10);
- index += 10;
- //Outputs(1*10 bytes)
- Array.Copy(ctrlData.Outputs, 0, result, index, 10);
- index += 10;
- //reservers
- byte[] reservers = new byte[16];
- Array.Copy(reservers, 0, result, index, 16);
- index += 16;
- //ethernet
- byte[] ethernet = new byte[8];
- Array.Copy(ethernet, 0, result, index, 8);
- index += 8;
- //ethernet
- //Error Code(1 bytes)
- result[13] = ctrlData.ErrorCode;
- index++;
- //General Status(1 bytes)
- result[14] = ctrlData.Status;
- index++;
- //ampliferStatus
- byte[] ampliferStatus = new byte[4];
- Array.Copy(ampliferStatus, 0, result, index, 4);
- index += 4;
- //counterModel
- byte[] counterModel = new byte[6];
- Array.Copy(counterModel, 0, result, index, 6);
- index += 6;
- //S Block(10 bytes)
- Array.Copy(ctrlData.SBlocks, 0, result, index, 10);
- index += 10;
- //T Block(10 bytes)
- Array.Copy(ctrlData.TBlocks, 0, result, index, 10);
- index += 10;
- //Axis Datas(36 * 8 bytes)
- for (int i = 0; i < MAX_AXIS_NUM; i++)
- {
- Array.Copy(CodeAxisData40(ctrlData.GalilAxisDatas[i]), 0, result, index, MAX_AXIS_DATA_LENGTH_40);
- index += MAX_AXIS_DATA_LENGTH_40;
- }
- return result;
- }
- /// <summary>
- /// GalilAxisData编码(Galil40)
- /// </summary>
- /// <param name="axisData"></param>
- /// <returns></returns>
- private byte[] CodeAxisData40(GalilAxisData axisData)
- {
- byte[] result = new byte[MAX_AXIS_DATA_LENGTH_40];
- int index = 0;
- //Status(2 bytes)
- Array.Copy(byteTransform.GetBytes(axisData.Status), 0, result, index, 2);
- index += 2;
- //Switches(1 bytes)
- result[index] = axisData.Switches;
- index++;
- //Stop Code(1 bytes)
- result[index] = axisData.StopCode;
- index++;
- //Reference Position(4 bytes)
- Array.Copy(BitConverter.GetBytes(axisData.ReferencePosition), 0, result, index, 4);
- index += 4;
- //Motor Position(4 bytes)
- Array.Copy(BitConverter.GetBytes(axisData.MotorPosition), 0, result, index, 4);
- index += 4;
- //Position Error
- Array.Copy(BitConverter.GetBytes(axisData.PositionError), 0, result, index, 4);
- index += 4;
- //Auxiliary Position
- Array.Copy(BitConverter.GetBytes(axisData.AuxiliaryPosition), 0, result, index, 4);
- index += 4;
- //Velocity
- Array.Copy(BitConverter.GetBytes(axisData.Velocity), 0, result, index, 4);
- index += 4;
- //Torque
- Array.Copy(BitConverter.GetBytes(axisData.Torque), 0, result, index, 4);
- index += 4;
- //Analog
- Array.Copy(BitConverter.GetBytes(axisData.Res), 0, result, index, 2);
- index += 2;
- byte hallInput = 0x00;
- result[index] = hallInput;
- index ++;
- byte reserved = 0x00;
- result[index] = reserved;
- index ++;
- byte[] userVariables = new byte[4];
- Array.Copy(userVariables, 0, result, index, 4);
- return result;
- }
- #endregion
- /// <summary>
- /// 解析指令(操作符, 运动轴, 操作数)
- /// </summary>
- /// <param name="cmd"></param>
- /// <returns></returns>
- private (string, char, int) AnalyseCommand(string cmdStr)
- {
- var result = ("", ' ', -1);
- //操作符
- result.Item1 = cmdStr.Substring(0, 2);
- //运动轴
- if (cmdStr.Length >= 4)
- {
- result.Item2 = Convert.ToChar(cmdStr.Substring(2, 1));
- }
- //操作数
- if (cmdStr.Length >= 5 && int.TryParse(cmdStr.Substring(4, cmdStr.Length - 5), out int tmp))
- {
- result.Item3 = tmp;
- }
- return result;
- }
- /// <summary>
- /// CMD校验
- /// </summary>
- /// <returns></returns>
- private bool CheckCmdValid(string cmdStr)
- {
- //长度
- if(cmdStr.Length < 3) return false;
- //;结尾
- if (!cmdStr.EndsWith(";")) return false;
- //第1位为A~Z
- if (cmdStr[0] < 'A' || cmdStr[0] > 'Z') return false;
- //第2位为A~Z
- if (cmdStr[1] < 'A' || cmdStr[1] > 'Z') return false;
- if(cmdStr[0] == 'C'&& cmdStr[1] == 'N')
- {
- return true;
- }
- if (cmdStr.Length >= 4)
- {
- //axis名称为A~H
- if (cmdStr[2] < 'A' || cmdStr[2] > 'H') return false;
- //=
- if(cmdStr.Length > 4 && !cmdStr.Contains("=")) return false;
- }
-
- return true;
- }
- /// <summary>
- /// 设置操作
- /// </summary>
- /// <param name="cmd"></param>
- /// <param name="axis"></param>
- /// <param name="value"></param>
- /// <returns></returns>
- private bool SetOperation(string cmd, char axis, int value)
- {
- switch (cmd)
- {
- case "SH"://上电
- SwitchMotor(axis, true);
- break;
- case "MO"://下电
- SwitchMotor(axis, false);
- break;
- case "PR"://相对位置
- SetTargetRelativePosition(axis, value);
- break;
- case "PA"://绝对位置
- SetTargetAbsolutePosition(axis, value);
- break;
- case "SP"://速度
- SetSpeed(axis, value);
- break;
- case "AC"://加速度
- SetAcceleration(axis, value);
- break;
- case "DC"://减速度
- SetDeceleration(axis, value);
- break;
- case "ST"://停止
- ControlMotion(axis, false);
- break;
- case "BG"://启动
- ControlMotion(axis, true);
- break;
- case "HM"://回零
- Home(axis);
- break;
- case "FI"://SRDRotation回零
- Home(axis);
- break;
- case "DP"://设定motor position
- SetMotorPosition(axis, value);
- break;
- case "DE"://设定auxiliary position
- SetAuxiliaryPosition(axis, value);
- break;
- case "CN":
- break;
- default:
- break;
- }
- return true;
- }
- /// <summary>
- /// 实时更新电机数据
- /// </summary>
- /// <param name="datasDic"></param>
- private void UpdateRealTimeMotionData(Dictionary<string, SimulatorMotionData> datasDic)
- {
- foreach(var dataItem in datasDic)
- {
- if (_axisNameIndexDic.ContainsKey(dataItem.Key))
- {
- UpdateAxisData(_axisNameIndexDic[dataItem.Key], dataItem.Value);
- }
- }
- }
- /// <summary>
- /// 更新Galil Input datas
- /// </summary>
- private void UpdateInputData(string module, string VariableName, bool value)
- {
- if(_moduleName == module && InputDataNameDIDic.ContainsKey(VariableName))
- {
- int tmp = InputDataNameDIDic[VariableName].Invert ? (!value ? 1 : 0) : (value ? 1 : 0);
- _galilControlData.Inputs[InputDataNameDIDic[VariableName].Address] = (byte)(tmp << InputDataNameDIDic[VariableName].Bit);
- }
- }
- /// <summary>
- /// 更新对应Axis数据
- /// </summary>
- /// <param name="index"></param>
- private void UpdateAxisData(int index, SimulatorMotionData data)
- {
- _galilControlData.GalilAxisDatas[index].Velocity = (int)(data.TargetVelocity * _velocityRateDic[_nameAxisList[index]]);
- _galilControlData.GalilAxisDatas[index].MotorPosition = (int)(data.ActualPosition / _motorPositionRateDic[_nameAxisList[index]]);
- _galilControlData.GalilAxisDatas[index].ReferencePosition = data.TargetPosition;
- _galilControlData.GalilAxisDatas[index].Torque = data.ActualTorque;
- _galilControlData.GalilAxisDatas[index].StopCode = data.StopCode;
- _galilControlData.GalilAxisDatas[index].Switches = (byte)(_galilControlData.GalilAxisDatas[index].Switches & 0xF9
- | ((data.ForwardLimit ? 1 : 0) << 3) | ((data.ReverseLimit ? 1 : 0) << 2));
- }
- /// <summary>
- /// 模拟器UI更新inputs数据
- /// </summary>
- /// <param name="name"></param>
- /// <param name="value"></param>
- public void UpdateInputByte(string name, int value)
- {
- if (InputDataNameDIDic.ContainsKey(name))
- {
- GalilDI galilDI = InputDataNameDIDic[name];
- short byteValue = (short)(_galilControlData.Inputs[galilDI.Address] & ~(1 << galilDI.Bit));
- short tmp = (short)(value << galilDI.Bit);
- _galilControlData.Inputs[galilDI.Address] = (byte)(byteValue | tmp);
- }
- }
- /// <summary>
- /// 模拟器获取inputs数据
- /// </summary>
- /// <param name="name"></param>
- public int GetInputData(string name)
- {
- int result = 0;
- if (!InputDataNameDIDic.ContainsKey(name)) return 0;
- GalilDI galilDI = InputDataNameDIDic[name];
- int tmp = _galilControlData.Inputs[galilDI.Address] & (1 << galilDI.Bit);
- result = (tmp == (1 << galilDI.Bit)) ? 1 : 0;
- return result;
- }
- #region AxisOperation
- /// <summary>
- /// 开/关电机
- /// </summary>
- /// <param name="axis"></param>
- /// <param name="flag"></param>
- private void SwitchMotor(char axis, bool flag)
- {
- byte[] data = byteTransform.GetBytes(_galilControlData.GalilAxisDatas[axis - 'A'].Status);
- data[0] &= 0xFE;
- data[0] |= (byte)(flag ? 0x00 : 0x01);
- _galilControlData.GalilAxisDatas[axis - 'A'].Status = byteTransform.TransUInt16(data, 0);
- MotorSimulator.Instance.SetMotionData(_nameAxisList[axis - 'A'], SWITCH_SIGNAL, flag);
- }
- /// <summary>
- /// 设置速度
- /// </summary>
- private void SetSpeed(char axis, int value)
- {
- MotorSimulator.Instance.SetMotionData(_nameAxisList[axis - 'A'], TARGET_VELOCITY, value);
- }
- /// <summary>
- /// 设置加速度
- /// </summary>
- private void SetAcceleration(char axis, int value)
- {
- MotorSimulator.Instance.SetMotionData(_nameAxisList[axis - 'A'], TARGET_ACCEL, value);
- }
- /// <summary>
- /// 设置减速度
- /// </summary>
- private void SetDeceleration(char axis, int value)
- {
- MotorSimulator.Instance.SetMotionData(_nameAxisList[axis - 'A'], TARGET_DECEL, value);
- }
- /// <summary>
- /// 设置目标绝对位置(设定位置)
- /// </summary>
- private void SetTargetAbsolutePosition(char axis, int value)
- {
- _galilControlData.GalilAxisDatas[axis - 'A'].ReferencePosition = value;
- MotorSimulator.Instance.SetMotionData(_nameAxisList[axis - 'A'], TARGET_POSITION, value);
- }
- /// <summary>
- /// 设置目标相对位置(设定位置)
- /// </summary>
- private void SetTargetRelativePosition(char axis, int value)
- {
- _galilControlData.GalilAxisDatas[axis - 'A'].ReferencePosition = _galilControlData.GalilAxisDatas[axis - 'A'].MotorPosition + value;
- MotorSimulator.Instance.SetMotionData(_nameAxisList[axis - 'A'], TARGET_POSITION, _galilControlData.GalilAxisDatas[axis - 'A'].ReferencePosition);
- }
- /// <summary>
- /// 设置 Motor Position(实际位置)
- /// </summary>
- /// <param name="axis"></param>
- /// <param name="value"></param>
- private void SetMotorPosition(char axis, int value)
- {
- MotorSimulator.Instance.SetMotionData(_nameAxisList[axis - 'A'], ACTUAL_POSITION, value);
- }
- /// <summary>
- /// 设置 Auxiliary Position
- /// </summary>
- /// <param name="axis"></param>
- /// <param name="value"></param>
- private void SetAuxiliaryPosition(char axis, int value)
- {
- MotorSimulator.Instance.SetMotionData(_nameAxisList[axis - 'A'], AUXILIARY_POSITION, value);
- }
- /// <summary>
- /// 控制运动
- /// </summary>
- private void ControlMotion(char axis, bool value)
- {
- MotorSimulator.Instance.SetMotionData(_nameAxisList[axis - 'A'], value ? MOTION_SIGNAL : STOP_SIGNAL, value);
- }
- /// <summary>
- /// 电机回零
- /// </summary>
- /// <param name="axis"></param>
- private void Home(char axis)
- {
- MotorSimulator.Instance.SetMotionData(_nameAxisList[axis - 'A'], HOMING_SIGNAL, true);
- }
- /// <summary>
- /// 电机FI回零
- /// </summary>
- /// <param name="axis"></param>
- private void FI(char axis)
- {
- MotorSimulator.Instance.SetMotionData(_nameAxisList[axis - 'A'], FI_HOMING_SIGNAL, true);
- }
- public void SetForwardLimit()
- {
- }
- #endregion
- }
- }
|