| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232 |
- using MaterialDesignThemes.Wpf;
- using Prism.Commands;
- using Prism.Events;
- using Prism.Ioc;
- using Prism.Mvvm;
- using Prism.Regions;
- using Prism.Services.Dialogs;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Threading;
- using System.Threading.Tasks;
- using System.Windows;
- using TeamAAS_VP.Controls;
- using TeamAAS_VP.Core;
- using TeamAAS_VP.Core.PLCs;
- using TeamAAS_VP.DxfModule;
- using TeamAAS_VP.Enums;
- using TeamAAS_VP.Events;
- using TeamAAS_VP.Interfaces;
- using TeamAAS_VP.Models;
- using TeamAAS_VP.Models.PLC;
- using TeamAAS_VP.Models.Robot;
- using TeamAAS_VP.Resources.Languages;
- using TeamAAS_VP.Services;
- using TeamAAS_VP.Views.Product;
- namespace TeamAAS_VP.ViewModels.Product
- {
- public class PlcPointParamsViewModel : BindableBase, IConfirmNavigationRequest
- {
- IRegionManager _regionManager;
- IEventAggregator _eventAggregator;
- IContainerProvider _container;
- IDialogService _dialogService;
- IConfigService _configService;
- IRobotService _robotService;
- ISystemDatabaseService _systemDatabaseService;
- IRemoteCommandService _remoteCommandService;
- #region 属性
- private ProductModel _SelectProduct;
- /// <summary>
- /// 选中的产品
- /// </summary>
- public ProductModel SelectProduct
- {
- get { return _SelectProduct; }
- set { SetProperty(ref _SelectProduct, value); }
- }
- private PlcPoint _SelectedPoint;
- public PlcPoint SelectedPoint
- {
- get { return _SelectedPoint; }
- set { SetProperty(ref _SelectedPoint, value); }
- }
- private PlcPoint _selectedPointInDataGrid;
- public PlcPoint SelectedPointInDataGrid
- {
- get { return _selectedPointInDataGrid; }
- set
- {
- if (SetProperty(ref _selectedPointInDataGrid, value))
- {
- SelectedPointInComboBox = value;
- // update command availability
- _MovePointUpCommand?.RaiseCanExecuteChanged();
- _MovePointDownCommand?.RaiseCanExecuteChanged();
- // 更新依赖可执行状态的命令
- _TechPointCommand?.RaiseCanExecuteChanged();
- _ExecuteMotion?.RaiseCanExecuteChanged();
- }
- // 可以同步到 SelectPoint 属性
- SelectedPoint = value;
- }
- }
- private PlcPoint _selectedPointInComboBox;
- public PlcPoint SelectedPointInComboBox
- {
- get { return _selectedPointInComboBox; }
- set
- {
- if (SetProperty(ref _selectedPointInComboBox, value))
- {
- SelectedPointInDataGrid = value;
- }
- // 可以同步到 SelectPoint 属性
- SelectedPoint = value;
- }
- }
- private ObservableCollection<PlcPoint> _Points = new ObservableCollection<PlcPoint>();
- /// <summary>
- /// 点位集合
- /// </summary>
- public ObservableCollection<PlcPoint> Points
- {
- get { return _Points; }
- set { SetProperty(ref _Points, value); }
- }
- private MotionCommand _SelectMotionCommand;
- /// <summary>
- /// 选中的运动指令
- /// </summary>
- public MotionCommand SelectMotionCommand
- {
- get { return _SelectMotionCommand; }
- set { SetProperty(ref _SelectMotionCommand, value); }
- }
- public Management management { get; set; }
- private IRobot _Robot;
- public IRobot Robot
- {
- get { return _Robot; }
- set
- {
- SetProperty(ref _Robot, value);
- }
- }
- private int _SelectedIndex;
- public int SelectedIndex
- {
- get { return _SelectedIndex; }
- set { SetProperty(ref _SelectedIndex, value); }
- }
- private double _Distance = 1;
- public double Distance
- {
- get { return _Distance; }
- set
- {
- SetProperty(ref _Distance, value);
- try
- {
- if (Robot == null)
- {
- return;
- }
- _configService.UpdateRobotStepDistance(Robot.Id, value);
- }
- catch (Exception)
- {
- }
- }
- }
- private ObservableCollection<ProcedureModel> _ProcedureModels;
- /// <summary>
- /// 流程集合
- /// </summary>
- public ObservableCollection<ProcedureModel> ProcedureModels
- {
- get { return _ProcedureModels; }
- set { SetProperty(ref _ProcedureModels, value); }
- }
- private ProcedureModel _SelectProcedure;
- /// <summary>
- /// 选中的流程
- /// </summary>
- public ProcedureModel SelectProcedure
- {
- get { return _SelectProcedure; }
- set
- {
- SetProperty(ref _SelectProcedure, value);
- }
- }
- private float _LockPointStartZ;
- /// <summary>
- /// 批量设置锁付点的起始Z坐标
- /// </summary>
- public float LockPointStartZ
- {
- get { return _LockPointStartZ; }
- set { SetProperty(ref _LockPointStartZ, value); }
- }
- private float _LockZDepth;
- /// <summary>
- /// 批量设置锁付点Z深度
- /// </summary>
- public float LockZDepth
- {
- get { return _LockZDepth; }
- set { SetProperty(ref _LockZDepth, value); }
- }
- private float _LockXSpeed;
- /// <summary>
- /// 批量设置锁付点X轴速度
- /// </summary>
- public float LockXSpeed
- {
- get { return _LockXSpeed; }
- set { SetProperty(ref _LockXSpeed, value); }
- }
- private float _LockYSpeed;
- /// <summary>
- /// 批量设置锁付点Y轴速度
- /// </summary>
- public float LockYSpeed
- {
- get { return _LockYSpeed; }
- set { SetProperty(ref _LockYSpeed, value); }
- }
- private float _LockZSpeed;
- /// <summary>
- /// 批量设置锁付点Z轴速度
- /// </summary>
- public float LockZSpeed
- {
- get { return _LockZSpeed; }
- set { SetProperty(ref _LockZSpeed, value); }
- }
- private float _LockZDescendSpeed;
- /// <summary>
- /// 批量设置锁付点Z轴下降速度
- /// </summary>
- public float LockZDescendSpeed
- {
- get { return _LockZDescendSpeed; }
- set { SetProperty(ref _LockZDescendSpeed, value); }
- }
- private Int16 _LockFeederNumber;
- /// <summary>
- /// 批量设置锁付点供料器编号
- /// </summary>
- public Int16 LockFeederNumber
- {
- get { return _LockFeederNumber; }
- set { SetProperty(ref _LockFeederNumber, value); }
- }
- private Int16 _LockScrewProgramNumber;
- /// <summary>
- /// 批量设置锁付点螺丝程序编号
- /// </summary>
- public Int16 LockScrewProgramNumber
- {
- get { return _LockScrewProgramNumber; }
- set { SetProperty(ref _LockScrewProgramNumber, value); }
- }
- #endregion
- #region 命令
- private DelegateCommand _NextCommand;
- public DelegateCommand NextCommand =>
- _NextCommand ?? (_NextCommand = new DelegateCommand(ExecuteNextCommand));
- private DelegateCommand _BackCommand;
- public DelegateCommand BackCommand =>
- _BackCommand ?? (_BackCommand = new DelegateCommand(ExecuteBackCommand));
- private DelegateCommand _LoadedCommand;
- public DelegateCommand LoadedCommand =>
- _LoadedCommand ?? (_LoadedCommand = new DelegateCommand(ExecuteLoadedCommand));
- private DelegateCommand<object> _ExecuteMotion;
- public DelegateCommand<object> ExecuteMotion =>
- _ExecuteMotion ?? (_ExecuteMotion = new DelegateCommand<object>(ExecuteExecuteMotion).ObservesCanExecute(() => CanExecutePointCommand).ObservesProperty(() => Robot).ObservesProperty(() => Robot.CanExecute).ObservesProperty(() => SelectedPointInDataGrid));
- private DelegateCommand<object> _JogCommand;
- public DelegateCommand<object> JogCommand =>
- _JogCommand ?? (_JogCommand = new DelegateCommand<object>(ExecuteJogCommand).ObservesCanExecute(() => CanExecute).ObservesProperty(() => Robot).ObservesProperty(() => Robot.CanExecute));
- private DelegateCommand _TechPointCommand;
- public DelegateCommand TechPointCommand =>
- _TechPointCommand ?? (_TechPointCommand = new DelegateCommand(ExecuteTechPointCommand).ObservesCanExecute(() => CanExecutePointCommand).ObservesProperty(() => Robot).ObservesProperty(() => Robot.CanExecute).ObservesProperty(() => SelectedPointInDataGrid));
- private DelegateCommand<string> _MotorCommand;
- public DelegateCommand<string> MotorCommand =>
- _MotorCommand ?? (_MotorCommand = new DelegateCommand<string>(ExecuteMotorCommand).ObservesCanExecute(() => CanExecute).ObservesProperty(() => Robot).ObservesProperty(() => Robot.CanExecute));
- private DelegateCommand _ResetCommand;
- public DelegateCommand ResetCommand =>
- _ResetCommand ?? (_ResetCommand = new DelegateCommand(ExecuteResetCommand).ObservesCanExecute(() => CanExecute).ObservesProperty(() => Robot).ObservesProperty(() => Robot.CanExecute));
- private DelegateCommand _sFreeCommand;
- public DelegateCommand sFreeCommand =>
- _sFreeCommand ?? (_sFreeCommand = new DelegateCommand(ExecutesFreeCommand).ObservesCanExecute(() => CanExecute).ObservesProperty(() => Robot).ObservesProperty(() => Robot.CanExecute));
- private DelegateCommand _SLockCommand;
- public DelegateCommand SLockCommand =>
- _SLockCommand ?? (_SLockCommand = new DelegateCommand(ExecuteSLockCommand).ObservesCanExecute(() => CanExecute).ObservesProperty(() => Robot).ObservesProperty(() => Robot.CanExecute));
- private DelegateCommand _SelectionChangedCommand;
- public DelegateCommand SelectionChangedCommand =>
- _SelectionChangedCommand ?? (_SelectionChangedCommand = new DelegateCommand(ExecuteSelectionChangedCommand));
- private DelegateCommand _AddPointCommand;
- public DelegateCommand AddPointCommand =>
- _AddPointCommand ?? (_AddPointCommand = new DelegateCommand(ExecuteAddPointCommand));
- private DelegateCommand _DeletePointCommand;
- public DelegateCommand DeletePointCommand =>
- _DeletePointCommand ?? (_DeletePointCommand = new DelegateCommand(ExecuteDeletePointCommand, CanExecuteDeletePointCommand).ObservesProperty(()=>SelectedPointInDataGrid));
- private DelegateCommand _MovePointUpCommand;
- public DelegateCommand MovePointUpCommand => _MovePointUpCommand ?? (_MovePointUpCommand = new DelegateCommand(ExecuteMovePointUpCommand, CanMovePointUp));
- private DelegateCommand _MovePointDownCommand;
- public DelegateCommand MovePointDownCommand => _MovePointDownCommand ?? (_MovePointDownCommand = new DelegateCommand(ExecuteMovePointDownCommand, CanMovePointDown));
- private DelegateCommand _ImportCadPointCommand;
- public DelegateCommand ImportCadPointCommand =>
- _ImportCadPointCommand ?? (_ImportCadPointCommand = new DelegateCommand(ExecuteImportCadPointCommand));
- private DelegateCommand _ImportCadLockCameraPointCommand;
- public DelegateCommand ImportCadLockCameraPointCommand =>
- _ImportCadLockCameraPointCommand ?? (_ImportCadLockCameraPointCommand = new DelegateCommand(ExecuteImportCadLockCameraPointCommand));
- private DelegateCommand _ApplyLockPointStartZCommand;
- public DelegateCommand ApplyLockPointStartZCommand =>
- _ApplyLockPointStartZCommand ?? (_ApplyLockPointStartZCommand = new DelegateCommand(ExecuteApplyLockPointStartZCommand));
- private DelegateCommand _ApplyLockPointDepthCommand;
- public DelegateCommand ApplyLockPointDepthCommand =>
- _ApplyLockPointDepthCommand ?? (_ApplyLockPointDepthCommand = new DelegateCommand(ExecuteApplyLockPointDepthCommand));
- private DelegateCommand _ApplyLockPointSpeedCommand;
- public DelegateCommand ApplyLockPointSpeedCommand =>
- _ApplyLockPointSpeedCommand ?? (_ApplyLockPointSpeedCommand = new DelegateCommand(ExecuteApplyLockPointSpeedCommand));
- private DelegateCommand _ApplyLockPointFeederAndScrewProgramCommand;
- public DelegateCommand ApplyLockPointFeederAndScrewProgramCommand =>
- _ApplyLockPointFeederAndScrewProgramCommand ?? (_ApplyLockPointFeederAndScrewProgramCommand = new DelegateCommand(ExecuteApplyLockPointFeederAndScrewProgramCommand));
- private DelegateCommand _AutoCorrectLockPoint;
- public DelegateCommand AutoCorrectLockPoint =>
- _AutoCorrectLockPoint ?? (_AutoCorrectLockPoint = new DelegateCommand(ExecuteAutoCorrectLockPoint));
- #endregion
- #region 事件
- #endregion
- public PlcPointParamsViewModel(IRegionManager regionManager, IEventAggregator ea, IContainerProvider container, IDialogService dialogService,
- IConfigService configService, IRobotService robotService, ISystemDatabaseService systemDatabaseService, IRemoteCommandService remoteCommandService)
- {
- _regionManager = regionManager;
- _eventAggregator = ea;
- _container = container;
- _dialogService = dialogService;
- _configService = configService;
- _systemDatabaseService = systemDatabaseService;
- //订阅权限登录事件
- _eventAggregator.GetEvent<UserLoginNotification>().Subscribe(LoginChange);
- management = _container.Resolve<Management>();
- _robotService = robotService;
- _remoteCommandService = remoteCommandService;
- }
- #region 方法
- /// <summary>
- /// 下一步
- /// </summary>
- void ExecuteNextCommand()
- {
- NavigationParameters param = new NavigationParameters();
- param.Add("SelectProduct", SelectProduct);
- _regionManager.RequestNavigate("ProductRegionContext", "ProductParams", param);
- }
- /// <summary>
- /// 上一步
- /// </summary>
- void ExecuteBackCommand()
- {
- NavigationParameters param = new NavigationParameters();
- param.Add("SelectProduct", SelectProduct);
- param.Add("SelectedProcedure", null);
- _regionManager.RequestNavigate("ProductRegionContext", "ProcessBasics", param);
- }
- /// <summary>
- /// 点动
- /// </summary>
- /// <param name="obj"></param>
- private async void ExecuteJogCommand(object obj)
- {
- if (Robot == null || !Robot.IsConnected) return;
- try
- {
- Robot.Timeout = 6000000;
- var items = ((string)obj).Split(':');
- switch (items[0])
- {
- case "X+":
- await Robot.JogAsync("X", double.Parse(items[1]));
- break;
- case "X-":
- await Robot.JogAsync("X", -double.Parse(items[1]));
- break;
- case "Y+":
- await Robot.JogAsync("Y", double.Parse(items[1]));
- break;
- case "Y-":
- await Robot.JogAsync("Y", -double.Parse(items[1]));
- break;
- case "Z+":
- await Robot.JogAsync("Z", double.Parse(items[1]));
- break;
- case "Z-":
- await Robot.JogAsync("Z", -double.Parse(items[1]));
- break;
- case "U+":
- await Robot.JogAsync("U", double.Parse(items[1]));
- break;
- case "U-":
- await Robot.JogAsync("U", -double.Parse(items[1]));
- break;
- case "V+":
- await Robot.JogAsync("V", double.Parse(items[1]));
- break;
- case "V-":
- await Robot.JogAsync("V", -double.Parse(items[1]));
- break;
- case "W+":
- await Robot.JogAsync("W", double.Parse(items[1]));
- break;
- case "W-":
- await Robot.JogAsync("W", -double.Parse(items[1]));
- break;
- default:
- break;
- }
- Robot.Timeout = 5000;
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = $"{Lang.完成}!", Duration = 0.4 });
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("机器人点位-机器人点动时出错", ex);
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = ex.Message, Duration = 1 });
- }
- }
- /// <summary>
- /// 执行运动
- /// </summary>
- /// <param name="obj"></param>
- async void ExecuteExecuteMotion(object parameter)
- {
- if (parameter == null)
- {
- return;
- }
- if (SelectedPoint==null)
- {
- return;
- }
- var values = (object[])parameter;
- var point = new RPoint()
- {
- X= SelectedPoint.X_Position,
- Y= SelectedPoint.Y_Position,
- Z= SelectedPoint.Z_Position_Start,
- U=SelectedPoint.U_Position,
- V= SelectedPoint.R_Position,
- };
- MotionCommand motionCmd = (MotionCommand)values[1];
- if (Robot == null || !Robot.IsConnected) return;
- try
- {
- Robot.Timeout = 6000000;
- switch (motionCmd)
- {
- case MotionCommand.Go:
- await Robot.GoAsync(point);
- break;
- case MotionCommand.Jump:
- await Robot.JumpAsync(point, 0);
- break;
- case MotionCommand.Move:
- await Robot.MoveAsync(point);
- break;
- }
- Robot.Timeout = 5000;
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = $"{Lang.完成}!", Duration = 0.4 });
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("机器人点位-执行点位时出错", ex);
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = ex.Message, Duration = 1 });
- }
- }
- /// <summary>
- /// 示教点位
- /// </summary>
- /// <param name="point"></param>
- async void ExecuteTechPointCommand()
- {
- if (Robot == null || !Robot.IsConnected) return;
- if (SelectedPoint == null) return;
- try
- {
- var curpos = await Robot.GetRobotPosAsync();
- SelectedPoint.X_Position = curpos.X;
- SelectedPoint.Y_Position = curpos.Y;
- SelectedPoint.Z_Position_Start = curpos.Z;
- SelectedPoint.U_Position = curpos.U;
- SelectedPoint.R_Position = curpos.V;
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = $"{Lang.完成}!", Duration = 0.4 });
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("机器人点位-示教点位时出错", ex);
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = ex.Message, Duration = 1 });
- }
- }
- void ExecuteLoadedCommand()
- {
- if (_systemDatabaseService.GetCurrentUser().userPart == Enums.UserPart.Operator)
- {
- IsAllowEdit = false;
- }
- else
- {
- IsAllowEdit = true;
- }
- }
- /// <summary>
- /// 电机
- /// </summary>
- /// <param name="obj"></param>
- private async void ExecuteMotorCommand(string obj)
- {
- if (Robot == null || !Robot.IsConnected) return;
- try
- {
- await Robot.MotorAsync(Convert.ToBoolean(obj));
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = $"{Lang.完成}!", Duration = 0.4 });
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("机器人点击操作时出错!", ex);
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = ex.Message, Duration = 1 });
- }
- }
- /// <summary>
- /// 重置
- /// </summary>
- private async void ExecuteResetCommand()
- {
- if (Robot == null || !Robot.IsConnected) return;
- try
- {
- await Robot.ResetAsync();
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = $"{Lang.完成}!", Duration = 0.4 });
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("重置机器人时出错!", ex);
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = ex.Message, Duration = 1 });
- }
- }
- /// <summary>
- /// 锁定刹车
- /// </summary>
- private async void ExecuteSLockCommand()
- {
- if (Robot == null || !Robot.IsConnected) return;
- try
- {
- await Robot.SLockAsync();
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = $"{Lang.完成}!", Duration = 0.4 });
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("机器人锁定刹车时出错!", ex);
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = ex.Message, Duration = 1 });
- }
- }
- /// <summary>
- /// 释放刹车
- /// </summary>
- private async void ExecutesFreeCommand()
- {
- if (Robot == null || !Robot.IsConnected) return;
- try
- {
- await Robot.SFreeAsync();
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = $"{Lang.完成}!", Duration = 0.4 });
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("机器人释放刹车时出错!", ex);
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = ex.Message, Duration = 1 });
- }
- }
- private bool CanExecute
- {
- get
- {
- // 命令可执行仅当机器人可执行且已选择点位
- if (Robot != null && Robot.IsConnected && Robot.CanExecute)
- {
- return true;
- }
- return false;
- }
- }
- //是否可以示教或者执行点位
- private bool CanExecutePointCommand
- {
- get
- {
- if (Robot != null && Robot.IsConnected && Robot.CanExecute)
- {
- return SelectedPointInDataGrid != null;
- }
- return false;
- }
- }
- /// <summary>
- /// 点位表切换时
- /// </summary>
- void ExecuteSelectionChangedCommand()
- {
- switch (SelectedIndex)
- {
- case 0:
- Points = SelectProduct.PickCameraPoints;
- PickPoints= SelectProduct.PickPoints;
- break;
- case 1:
- Points = SelectProduct.PickPoints;
- break;
- case 2:
- Points = SelectProduct.SecPosCameraPoints;
- break;
- case 3:
- Points = SelectProduct.ScrewCameraPoints;
- break;
- case 4:
- Points = SelectProduct.ScrewPoints;
- break;
- case 5:
- Points = SelectProduct.CheckCameraPoints;
- break;
- default:
- break;
- }
- }
- /// <summary>
- /// 增加点位
- /// </summary>
- void ExecuteAddPointCommand()
- {
- //添加点位
- Points.Add(new PlcPoint()
- {
- Number = Points.Count + 1,
- X_Velocity = 100,
- Y_Velocity = 100,
- Z_Velocity_Start = 100,
- Z_Velocity_Stop = 100,
- U_Velocity = 100,
- R_Velocity = 100,
- });
- // update commands
- _MovePointUpCommand?.RaiseCanExecuteChanged();
- _MovePointDownCommand?.RaiseCanExecuteChanged();
- }
- /// <summary>
- /// 移除点位
- /// </summary>
- void ExecuteDeletePointCommand()
- {
- if (SelectedPoint == null)
- {
- return;
- }
- // 确认删除
- if (MessageBox.Show("确认要删除选中的点位吗?", "删除点位", MessageBoxButton.YesNo, MessageBoxImage.Question) != MessageBoxResult.Yes)
- {
- return;
- }
- int removedIndex = Points.IndexOf(SelectedPoint);
- Points.Remove(SelectedPoint);
- //重新编号
- for (int i = 0; i < Points.Count; i++)
- {
- Points[i].Number = i + 1;
- }
- // adjust selection
- if (Points.Count > 0)
- {
- int newIndex = Math.Min(removedIndex, Points.Count - 1);
- SelectedPointInDataGrid = Points[newIndex];
- }
- else
- {
- SelectedPointInDataGrid = null;
- }
- // update commands
- _MovePointUpCommand?.RaiseCanExecuteChanged();
- _MovePointDownCommand?.RaiseCanExecuteChanged();
- }
- bool CanExecuteDeletePointCommand()
- {
- return SelectedPointInDataGrid != null;
- }
- private bool CanMovePointUp()
- {
- return SelectedPointInDataGrid != null && Points.IndexOf(SelectedPointInDataGrid) > 0;
- }
- private bool CanMovePointDown()
- {
- return SelectedPointInDataGrid != null && Points.IndexOf(SelectedPointInDataGrid) >= 0 && Points.IndexOf(SelectedPointInDataGrid) < Points.Count - 1;
- }
- /// <summary>
- /// 向上移动点位
- /// </summary>
- void ExecuteMovePointUpCommand()
- {
- if (SelectedPointInDataGrid == null) return;
- // 确认移动
- if (MessageBox.Show("确认将选中点位上移一位吗?", "移动点位", MessageBoxButton.YesNo, MessageBoxImage.Question) != MessageBoxResult.Yes)
- {
- return;
- }
- int idx = Points.IndexOf(SelectedPointInDataGrid);
- if (idx <= 0) return;
- var item = SelectedPointInDataGrid;
- Points.Move(idx, idx - 1);
- // renumber
- for (int i = 0; i < Points.Count; i++) Points[i].Number = i + 1;
- SelectedPointInDataGrid = item;
- _MovePointUpCommand?.RaiseCanExecuteChanged();
- _MovePointDownCommand?.RaiseCanExecuteChanged();
- }
- /// <summary>
- /// 向下移动点位
- /// </summary>
- void ExecuteMovePointDownCommand()
- {
- if (SelectedPointInDataGrid == null) return;
- // 确认移动
- if (MessageBox.Show("确认将选中点位下移一位吗?", "移动点位", MessageBoxButton.YesNo, MessageBoxImage.Question) != MessageBoxResult.Yes)
- {
- return;
- }
- int idx = Points.IndexOf(SelectedPointInDataGrid);
- if (idx < 0 || idx >= Points.Count - 1) return;
- var item = SelectedPointInDataGrid;
- Points.Move(idx, idx + 1);
- // renumber
- for (int i = 0; i < Points.Count; i++) Points[i].Number = i + 1;
- SelectedPointInDataGrid = item;
- _MovePointUpCommand?.RaiseCanExecuteChanged();
- _MovePointDownCommand?.RaiseCanExecuteChanged();
- }
- /// <summary>
- /// CAD导入点位
- /// </summary>
- async void ExecuteImportCadPointCommand()
- {
- try
- {
- var view = new DxfView();
- //show the dialog
- var result = await DialogHost.Show(view, "RootDialog", null, null, null);
- if (result != null)
- {
- var cadPoints = view.Points;
- if (cadPoints != null && cadPoints.Count > 0)
- {
- //要导入的开始点编号
- int startNumber = view.StartIndex;
- //弹窗提示用户是否确认要导入从该编号开始的点位,点位数量为cadPoints.Count
- if (MessageBox.Show($"确认要从点位编号 {startNumber} 开始导入 {cadPoints.Count} 个点位吗?", "导入点位", MessageBoxButton.YesNo, MessageBoxImage.Question) != MessageBoxResult.Yes)
- {
- return;
- }
- //导入点位
- for (int i = 0; i < cadPoints.Count; i++)
- {
- //如果点位编号已存在,则更新该点位,否则新增点位,只更新XY坐标
- var point = cadPoints[i];
- var existingPoint = Points.FirstOrDefault(p => p.Number == startNumber + i);
- if (existingPoint != null)
- {
- existingPoint.X_Position = point.X;
- existingPoint.Y_Position = point.Y;
- }
- else
- {
- Points.Add(new PlcPoint()
- {
- Number = startNumber + i,
- X_Position = point.X,
- Y_Position = point.Y,
- X_Velocity=100,
- Y_Velocity=100,
- Z_Velocity_Start=100,
- Z_Velocity_Stop=100,
- U_Velocity=100,
- R_Velocity=100,
- });
- }
- }
- //对所有的点位重新编号,确保编号连续
- var sortedPoints = Points.OrderBy(p => p.Number).ToList();
- Points.Clear();
- for (int i = 0; i < sortedPoints.Count; i++)
- {
- sortedPoints[i].Number = i + 1;
- Points.Add(sortedPoints[i]);
- }
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = $"{Lang.完成}!", Duration = 0.4 });
- }
- }
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("导入CAD点位时出错!", ex);
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = ex.Message, Duration = 1 });
- }
- }
- /// <summary>
- /// 导入锁付拍照引导的产品坐标系中的点位
- /// </summary>
- async void ExecuteImportCadLockCameraPointCommand()
- {
- try
- {
- var view = new DxfView();
- //show the dialog
- var result = await DialogHost.Show(view, "RootDialog", null, null, null);
- if (result != null)
- {
- var cadPoints = view.Points;
- if (cadPoints != null && cadPoints.Count == 2)
- {
- //弹窗提示用户是否确认要导入锁付拍照引导的起始点和结束点
- if (MessageBox.Show($"确认要导入锁付拍照引导的起始点和结束点吗?", "导入点位", MessageBoxButton.YesNo, MessageBoxImage.Question) != MessageBoxResult.Yes)
- {
- return;
- }
- //导入点位
- //起始点
- var startPoint = cadPoints[0];
- SelectProduct.ScrewCameraLocalPos1.X_Position = startPoint.X;
- SelectProduct.ScrewCameraLocalPos1.Y_Position = startPoint.Y;
- //结束点
- var endPoint = cadPoints[1];
- SelectProduct.ScrewCameraLocalPos2.X_Position = endPoint.X;
- SelectProduct.ScrewCameraLocalPos2.Y_Position = endPoint.Y;
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = $"{Lang.完成}!", Duration = 0.4 });
- }
- else
- {
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = "请导入两个点,分别为锁付拍照引导的起始点和结束点!", Duration = 1 });
- }
- }
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("导入CAD点位时出错!", ex);
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = ex.Message, Duration = 1 });
- }
- }
- /// <summary>
- /// 批量设置锁付点的供料器编号和螺丝程序编号
- /// </summary>
- void ExecuteApplyLockPointFeederAndScrewProgramCommand()
- {
- //遍历所有点位,设置供料器编号和螺丝程序编号
- foreach (var point in Points)
- {
- point.Feeder = LockFeederNumber;
- point.ScrewProNum = LockScrewProgramNumber;
- }
- }
- /// <summary>
- /// 批量设置锁付点的速度
- /// </summary>
- void ExecuteApplyLockPointSpeedCommand()
- {
- //遍历所有点位,设置速度
- foreach (var point in Points)
- {
- point.X_Velocity = LockXSpeed;
- point.Y_Velocity = LockYSpeed;
- point.Z_Velocity_Start = LockZSpeed;
- point.Z_Velocity_Stop = LockZDescendSpeed;
- }
- }
- /// <summary>
- /// 批量设置锁付点的Z深度
- /// </summary>
- void ExecuteApplyLockPointDepthCommand()
- {
- //遍历所有点位,设置Z深度
- foreach (var point in Points)
- {
- point.Z_Position_Stop = point.Z_Position_Start - LockZDepth;
- }
- }
- /// <summary>
- /// 批量设置锁付点的起始Z坐标
- /// </summary>
- void ExecuteApplyLockPointStartZCommand()
- {
- //遍历所有点位,设置起始Z坐标
- foreach (var point in Points)
- {
- point.Z_Position_Start = LockPointStartZ;
- }
- }
- /// <summary>
- /// 通过相机自动矫正锁附点位
- /// </summary>
- async void ExecuteAutoCorrectLockPoint()
- {
- try
- {
- var view = new AutoCorrectLockPoint();
- var vm = view.DataContext as AutoCorrectLockPointViewModel;
- vm.Robot = Robot;
- vm.AllScrewPoint = new List<PlcPoint>(Points.ToArray());
- //show the dialog
- var result = await DialogHost.Show(view, "RootDialog", null, null, null);
- if (result != null)
- {
-
- }
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("通过相机自动矫正锁附点位时出错!", ex);
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = ex.Message, Duration = 1 });
- }
- }
- #endregion
- #region 继承
- /// <summary>
- /// 确认导航请求时调用。此方法允许您在导航之前执行一些操作。
- /// </summary>
- /// <param name="navigationContext"></param>
- /// <param name="continuationCallback"></param>
- public void ConfirmNavigationRequest(NavigationContext navigationContext, Action<bool> continuationCallback)
- {
- continuationCallback(true);
- }
- /// <summary>
- /// 接收导航请求时调用。传入导航参数,包含有关导航目标的信息。
- /// </summary>
- /// <param name="navigationContext"></param>
- /// <exception cref="NotImplementedException"></exception>
- public async void OnNavigatedTo(NavigationContext navigationContext)
- {
- try
- {
- SelectProduct = navigationContext.Parameters.GetValue<ProductModel>("SelectProduct");
- SelectedIndex = 0;
- PickPoints = SelectProduct.PickPoints;
- Points = SelectProduct.PickCameraPoints;
- if (Robot == null)
- {
- Robot = _robotService.GetRobotByNumber(1);
- }
- if (Robot != null && Robot.IsConnected)
- {
- this.Distance = _configService.GetRobotStepDistance(Robot.Id);
- Robot.EnterDebugMode = true;
- }
- else if (Robot != null)
- {
- Robot.EnterDebugMode = true;
- }
- ProcedureModels = new ObservableCollection<ProcedureModel>();
- foreach (var item in SelectProduct.CameraProcedures)
- {
- foreach (var item1 in item.ProcedureModels)
- {
- ProcedureModels.Add(item1);
- }
- }
- //对锁付点的批量设置进行初始化
- LockPointStartZ = SelectProduct.ScrewPoints.FirstOrDefault()?.Z_Position_Start ?? 0;
- LockZDepth= SelectProduct.ScrewPoints.FirstOrDefault() != null ? (SelectProduct.ScrewPoints.FirstOrDefault().Z_Position_Start - SelectProduct.ScrewPoints.FirstOrDefault().Z_Position_Stop) : 0;
- LockXSpeed= SelectProduct.ScrewPoints.FirstOrDefault()?.X_Velocity ?? 100;
- LockYSpeed= SelectProduct.ScrewPoints.FirstOrDefault()?.Y_Velocity ?? 100;
- LockZSpeed= SelectProduct.ScrewPoints.FirstOrDefault()?.Z_Velocity_Start ?? 100;
- LockZDescendSpeed= SelectProduct.ScrewPoints.FirstOrDefault()?.Z_Velocity_Stop ?? 100;
- LockFeederNumber= SelectProduct.ScrewPoints.FirstOrDefault()?.Feeder ?? 1;
- LockScrewProgramNumber= SelectProduct.ScrewPoints.FirstOrDefault()?.ScrewProNum ?? 1;
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("机器人点位界面进入时出错!", ex);
- }
- }
- /// <summary>
- /// 是否允许导航到此视图模型。
- /// </summary>
- /// <param name="navigationContext"></param>
- /// <returns></returns>
- public bool IsNavigationTarget(NavigationContext navigationContext)
- {
- return true;
- }
- /// <summary>
- /// 导航离开此视图模型时调用。您可以在此处执行清理操作或保存状态。
- /// </summary>
- /// <param name="navigationContext"></param>
- public void OnNavigatedFrom(NavigationContext navigationContext)
- {
- //if (Robot != null)
- //{
- // Robot.EnterDebugMode = false;
- //}
- }
- #endregion
- #region 取料拍照点位矫正
- private PlcPoint _SelectedCameraForPickPoint;
- public PlcPoint SelectedCameraForPickPoint
- {
- get { return _SelectedCameraForPickPoint; }
- set { SetProperty(ref _SelectedCameraForPickPoint, value); }
- }
-
- private ObservableCollection<PlcPoint> _PickPoints = new ObservableCollection<PlcPoint>();
- /// <summary>
- /// 取料点位集合
- /// </summary>
- public ObservableCollection<PlcPoint> PickPoints
- {
- get { return _PickPoints; }
- set { SetProperty(ref _PickPoints, value); }
- }
- //
- private PlcPoint _SelectedPickPoint;
- /// <summary>
- /// 选中的取料点位
- /// </summary>
- public PlcPoint SelectedPickPoint
- {
- get { return _SelectedPickPoint; }
- set { SetProperty(ref _SelectedPickPoint, value); }
- }
- private DelegateCommand _AutoCorrectPickPointCommand;
- public DelegateCommand AutoCorrectPickPointCommand =>
- _AutoCorrectPickPointCommand ?? (_AutoCorrectPickPointCommand = new DelegateCommand(ExecuteAutoCorrectPickPointCommand, CanExecuteAutoCorrectPickPointCommand)
- .ObservesProperty(()=> SelectedCameraForPickPoint).ObservesProperty(() => SelectedPickPoint).ObservesProperty(() => SelectProcedure).ObservesProperty(() => IsExecutingAutoCorrectPickPoint));
- //
- private bool _IsExecutingAutoCorrectPickPoint = false;
- /// <summary>
- /// 正在执行取料拍照点位矫正
- /// </summary>
- public bool IsExecutingAutoCorrectPickPoint
- {
- get { return _IsExecutingAutoCorrectPickPoint; }
- set { SetProperty(ref _IsExecutingAutoCorrectPickPoint, value); }
- }
- async void ExecuteAutoCorrectPickPointCommand()
- {
- try
- {
- IsExecutingAutoCorrectPickPoint = true;
- if (SelectedCameraForPickPoint == null || SelectedPickPoint == null || SelectProcedure == null)
- {
- return;
- }
- if (Robot == null || !Robot.IsConnected)
- {
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = "机器人未连接,无法执行取料拍照点位矫正!", Duration = 1 });
- return;
- }
- if (MessageBox.Show("确认要执行取料拍照点位矫正吗?", "取料拍照点位矫正", MessageBoxButton.YesNo, MessageBoxImage.Question) != MessageBoxResult.Yes)
- {
- return;
- }
- var waiting = new WaitingControl();
- //show the dialog
- var task = DialogHost.Show(waiting, "RootDialog", null, null, null);
- // 1. 控制机器人移动至拍照点位
- var rpoint = new RPoint()
- {
- X = SelectedCameraForPickPoint.X_Position,
- Y = SelectedCameraForPickPoint.Y_Position,
- Z = SelectedCameraForPickPoint.Z_Position_Start,
- U = SelectedCameraForPickPoint.U_Position,
- V = SelectedCameraForPickPoint.R_Position,
- };
- await Robot.CalibMotionAsync(rpoint, 0);
- var _cts = new CancellationTokenSource();
- // 2. 执行拍照并获取识别结果
- var recognitionResult =await _remoteCommandService.ExecutePhotoGetSinglePoint(SelectProcedure, null, new double[] { rpoint.X, rpoint.Y, 0 }, _cts.Token);
- if (!recognitionResult.IsSucceed)
- {
- if (DialogHost.IsDialogOpen("RootDialog"))
- {
- DialogHost.Close("RootDialog");
- }
- await task;
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = "取料拍照点位矫正失败,识别未成功!", Duration = 1 });
- return;
- }
- // 3. 根据识别结果更新取料点位坐标
- SelectedPickPoint.X_Position = (float)recognitionResult.X;
- SelectedPickPoint.Y_Position = (float)recognitionResult.Y;
- if (DialogHost.IsDialogOpen("RootDialog"))
- {
- DialogHost.Close("RootDialog");
- }
- await task;
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = "取料拍照点位矫正完成!", Duration = 0.4 });
- }
- catch (Exception ex)
- {
- LogHelper.WriteLogError("取料拍照点位矫正时出错!", ex);
- _eventAggregator.GetEvent<SnackbarMessageNotification>().Publish(new MessageParameter() { Msg = ex.Message, Duration = 1 });
- }
- finally
- {
- IsExecutingAutoCorrectPickPoint = false;
- }
- }
- bool CanExecuteAutoCorrectPickPointCommand()
- {
- return SelectedCameraForPickPoint!=null && SelectedPickPoint!=null && SelectProcedure!=null && !IsExecutingAutoCorrectPickPoint;
- }
- #endregion
- private bool _IsAllowEdit = false;
- public bool IsAllowEdit
- {
- get { return _IsAllowEdit; }
- set { SetProperty(ref _IsAllowEdit, value); }
- }
- private void LoginChange(Models.User user)
- {
- if (user.userPart == Enums.UserPart.Operator)
- {
- IsAllowEdit = false;
- }
- else
- {
- IsAllowEdit = true;
- }
- }
- }
- }
|