DrawModule.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. using FlowChartModule.Model;
  2. using FlowChartModule.Views;
  3. using Newtonsoft.Json;
  4. using ParentService.ParentService;
  5. using Prism.Ioc;
  6. using Prism.Regions;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.IO;
  10. using System.Linq;
  11. using System.Reflection;
  12. using System.Text;
  13. using System.Threading;
  14. using System.Threading.Tasks;
  15. using System.Windows;
  16. using System.Windows.Controls;
  17. using System.Windows.Media;
  18. using System.Windows.Shapes;
  19. using Prism.Mvvm;
  20. using System.Xml.Linq;
  21. using CommonUtils.运行信号量;
  22. namespace FlowChartModule.绘制模块
  23. {
  24. public class DrawModule : BindableBase
  25. {
  26. private List<Element> elements=new List<Element>();
  27. private Element _CurrentSelectElement;//当前列表鼠标按下的元素
  28. private Element _CurrentClickElement;//当前列表鼠标点击的元素
  29. private Element _CurrentFlowSelectElement;//当前流程鼠标按下的元素
  30. private Element _CurrentFlowClickElement;//当前流程鼠标点击的元素
  31. private Element _CurrentMouseEnterElement;//当前流程鼠标悬停的元素
  32. private string _CurrentStatus ="";//当前操作状态
  33. private int _CurrentIndex=0;//当前运行元素Index
  34. private Connection_Line _connection_Line;//当前画线
  35. private List<Element> CurrentFlowElements=new List<Element>();
  36. public bool isMouseDown=false;
  37. private Canvas _canvas;
  38. public Canvas Canvas { get; set; }
  39. public Element CurrentSelectElement
  40. {
  41. get
  42. {
  43. return _CurrentSelectElement;
  44. }
  45. set
  46. {
  47. _CurrentSelectElement = value;
  48. }
  49. }
  50. public Element CurrentClickElement
  51. {
  52. get
  53. {
  54. return _CurrentClickElement;
  55. }
  56. set
  57. {
  58. _CurrentClickElement = value;
  59. _CurrentClickElement.RequestNavigate(_regionManager);
  60. }
  61. }
  62. public Element CurrentFlowClickElement { get => _CurrentFlowClickElement; set => _CurrentFlowClickElement = value; }
  63. public Connection_Line Connection_Line { get => _connection_Line; set => _connection_Line = value; }
  64. public List<Element> Elements { get => elements; set => elements = value; }
  65. public int CurrentIndex { get => _CurrentIndex; set { CurrentStatus = value.ToString(); SetProperty(ref _CurrentIndex, value); } }
  66. public string CurrentStatus { get => _CurrentStatus; set { SetProperty(ref _CurrentStatus, value); } }
  67. private IRegionManager _regionManager;
  68. private IContainerProvider _container;
  69. private AppData appData=new AppData();
  70. private Point MouseDownPoint;
  71. private Point MouseMovePoint;
  72. private Point CurrentPoint=new Point();
  73. private Element CurrentStartElement=null;
  74. private List<Connection_Line> LinePoint=new List<Connection_Line>();
  75. public DrawModule(IRegionManager regionManager, IContainerProvider container)
  76. {
  77. this._regionManager = regionManager;
  78. this._container = container;
  79. }
  80. public void DrawRectangle(Point point)
  81. {
  82. if ( CurrentSelectElement != null )
  83. {
  84. if ( CurrentFlowElements.Find(x => x.Id == CurrentSelectElement.Id) == null )
  85. {
  86. Canvas.SetLeft(CurrentSelectElement.rect, point.X - CurrentSelectElement.rect.Width / 2);
  87. Canvas.SetTop(CurrentSelectElement.rect, point.Y - CurrentSelectElement.rect.Height / 2);
  88. CurrentSelectElement.rect.MouseDown += Rect_MouseDown;
  89. CurrentSelectElement.rect.MouseMove += Rect_MouseMove;
  90. CurrentSelectElement.rect.MouseUp += Rect_MouseUp; ;
  91. CurrentSelectElement.rect.MouseEnter += Rect_MouseEnter;
  92. CurrentSelectElement.rect.MouseLeave += Rect_MouseLeave;
  93. CurrentSelectElement.rect.MouseRightButtonDown += Rect_MouseRightButtonDown;
  94. if ( CurrentSelectElement.parentClass is StartService )
  95. {
  96. if ( CurrentStartElement == null )
  97. {
  98. CurrentStartElement = CurrentSelectElement;
  99. Canvas.Children.Add(CurrentSelectElement.rect);
  100. CurrentFlowElements.Add(CurrentSelectElement);
  101. }
  102. }
  103. else
  104. {
  105. Canvas.Children.Add(CurrentSelectElement.rect);
  106. CurrentFlowElements.Add(CurrentSelectElement);
  107. }
  108. }
  109. }
  110. _CurrentFlowSelectElement = null;
  111. CurrentSelectElement = null;
  112. }
  113. private void Rect_MouseRightButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
  114. {
  115. _regionManager.Regions[ "EditRegion" ].RequestNavigate(_CurrentMouseEnterElement.SourcesName);
  116. ConcreteVisitor visitor = new ConcreteVisitor(); // 创建访问者实例
  117. visitor._container = _container;
  118. _CurrentMouseEnterElement.parentClass.Accept(visitor);
  119. }
  120. private void Rect_MouseLeave(object sender, System.Windows.Input.MouseEventArgs e)
  121. {
  122. ( ( Element ) ( ( Canvas ) sender ).Tag ).left.ellipse.Fill = Brushes.Transparent;
  123. ( ( Element ) ( ( Canvas ) sender ).Tag ).up.ellipse.Fill = Brushes.Transparent;
  124. ( ( Element ) ( ( Canvas ) sender ).Tag ).down.ellipse.Fill = Brushes.Transparent;
  125. ( ( Element ) ( ( Canvas ) sender ).Tag ).right.ellipse.Fill = Brushes.Transparent;
  126. _CurrentMouseEnterElement = null;
  127. }
  128. private void Rect_MouseEnter(object sender, System.Windows.Input.MouseEventArgs e)
  129. {
  130. _CurrentMouseEnterElement = ( Element ) ( ( Canvas ) sender ).Tag;
  131. _CurrentMouseEnterElement.left.ellipse.Fill = Brushes.Green;
  132. _CurrentMouseEnterElement.up.ellipse.Fill = Brushes.Green;
  133. _CurrentMouseEnterElement.down.ellipse.Fill = Brushes.Green;
  134. _CurrentMouseEnterElement.right.ellipse.Fill = Brushes.Green;
  135. }
  136. private void Rect_MouseUp(object sender, System.Windows.Input.MouseButtonEventArgs e)
  137. {
  138. isMouseDown = false;
  139. if ( CurrentFlowClickElement != null && Connection_Point._isMouseDown && _CurrentMouseEnterElement != null )
  140. {
  141. Connection_Line.Endelement = _CurrentMouseEnterElement;
  142. ( ( Element ) ( ( Canvas ) sender ).Tag ).connection_Lines.Add(Connection_Line);
  143. }
  144. Connection_Point._isMouseDown = false;
  145. _CurrentFlowSelectElement = null;
  146. CurrentFlowClickElement = null;
  147. System.Windows.Input.Mouse.Capture(null);
  148. }
  149. private void Rect_MouseMove(object sender, System.Windows.Input.MouseEventArgs e)
  150. {
  151. if ( _CurrentFlowSelectElement != null )
  152. {
  153. MouseMovePoint = e.GetPosition(Canvas);
  154. double _X= CurrentPoint.X+ MouseMovePoint.X-MouseDownPoint.X;
  155. if ( _X < 0 ) _X = 0;
  156. double _Y= CurrentPoint.Y+ MouseMovePoint.Y-MouseDownPoint.Y;
  157. if ( _Y < 0 ) _Y = 0;
  158. _CurrentFlowSelectElement.rect.SetValue(Canvas.LeftProperty, _X);
  159. _CurrentFlowSelectElement.rect.SetValue(Canvas.TopProperty, _Y);
  160. for ( int i = 0; i < _CurrentFlowSelectElement.connection_Lines.Count; i++ )
  161. {
  162. if ( _CurrentFlowSelectElement.connection_Lines[ i ].Startelement == _CurrentFlowSelectElement )
  163. {
  164. double x=LinePoint[i].curveModel.StartPoint.X+(MouseMovePoint.X - MouseDownPoint.X);
  165. double y=LinePoint[i].curveModel.StartPoint.Y+(MouseMovePoint.Y - MouseDownPoint.Y);
  166. _CurrentFlowSelectElement.connection_Lines[ i ].curveModel.StartPoint = new Point(x, y);
  167. _CurrentFlowSelectElement.connection_Lines[ i ].DrewbezierRef(Canvas);
  168. }
  169. else
  170. {
  171. double x=LinePoint[i].curveModel.EndPoint.X+(MouseMovePoint.X - MouseDownPoint.X);
  172. double y=LinePoint[i].curveModel.EndPoint.Y+(MouseMovePoint.Y - MouseDownPoint.Y);
  173. _CurrentFlowSelectElement.connection_Lines[ i ].curveModel.EndPoint = new Point(x, y);
  174. _CurrentFlowSelectElement.connection_Lines[ i ].DrewbezierRef(Canvas);
  175. }
  176. }
  177. }
  178. }
  179. private void Rect_MouseDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
  180. {
  181. isMouseDown = true;
  182. MouseDownPoint = e.GetPosition(Canvas);
  183. CurrentFlowClickElement = ( Element ) ( ( Canvas ) sender ).Tag;
  184. if ( !Connection_Point._isMouseDown )
  185. {
  186. _CurrentFlowSelectElement = ( Element ) ( ( Canvas ) sender ).Tag;
  187. LinePoint = new List<Connection_Line>();
  188. LinePoint = JsonConvert.DeserializeObject<List<Connection_Line>>(JsonConvert.SerializeObject(_CurrentFlowSelectElement.connection_Lines));
  189. CurrentPoint.X = Canvas.GetLeft(_CurrentFlowSelectElement.rect);
  190. if ( CurrentPoint.X < 0 ) CurrentPoint.X = 0;
  191. CurrentPoint.Y = Canvas.GetTop(_CurrentFlowSelectElement.rect);
  192. if ( CurrentPoint.Y < 0 ) CurrentPoint.Y = 0;
  193. System.Windows.Input.Mouse.Capture(sender as Canvas);
  194. }
  195. }
  196. public void SavePrograms()
  197. {
  198. appData.programDatas.Clear();
  199. for ( int i = 0; i < CurrentFlowElements.Count; i++ )
  200. {
  201. List<xmLine> xmlLinePoint=new List<xmLine>();
  202. for ( int j = 0; j < CurrentFlowElements[ i ].connection_Lines.Count; j++ )
  203. {
  204. xmlLinePoint.Add(new xmLine()
  205. {
  206. startPoint = CurrentFlowElements[ i ].connection_Lines[ j ].curveModel.StartPoint,
  207. endPoint = CurrentFlowElements[ i ].connection_Lines[ j ].curveModel.EndPoint,
  208. startGuid = CurrentFlowElements[ i ].connection_Lines[ j ].Startelement.Id,
  209. endGuid = CurrentFlowElements[ i ].connection_Lines[ j ].Endelement.Id,
  210. });
  211. }
  212. appData.programDatas.Add(new ProgramData()
  213. {
  214. guid = CurrentFlowElements[ i ].Id,
  215. name = CurrentFlowElements[ i ]._Name,
  216. parentClass = CurrentFlowElements[ i ].parentClass,
  217. LinePoint = xmlLinePoint,
  218. point = new Point(( int ) Canvas.GetLeft(CurrentFlowElements[ i ].rect), ( int ) Canvas.GetTop(CurrentFlowElements[ i ].rect)),
  219. sourcesName = CurrentFlowElements[ i ].SourcesName
  220. });
  221. }
  222. var settings = new JsonSerializerSettings
  223. {
  224. TypeNameHandling = TypeNameHandling.All
  225. };
  226. string json=JsonConvert.SerializeObject( appData, settings);
  227. string filePath = @"D:\配置文件\user.json";
  228. File.WriteAllText(filePath, json);
  229. CurrentStatus = "保存完成";
  230. }
  231. public void LoadPrograms()
  232. {
  233. CurrentFlowElements.Clear();
  234. Canvas.Children.Clear();
  235. string filePath = @"D:\配置文件\user.json";
  236. string json= File.ReadAllText(filePath);
  237. var settings = new JsonSerializerSettings
  238. {
  239. TypeNameHandling = TypeNameHandling.All
  240. };
  241. appData = JsonConvert.DeserializeObject<AppData>(json, settings);
  242. for ( int i = 0; i < appData.programDatas.Count; i++ )
  243. {
  244. Element element=new Element(appData.programDatas[i].name,_container,true,false);
  245. GetConcreteVisitor visitor = new GetConcreteVisitor(); // 创建访问者实例
  246. element.parentClass = appData.programDatas[ i ].parentClass;
  247. ConcreteVisitor visitor2 = new ConcreteVisitor(); // 创建访问者实例
  248. visitor2._container = _container;
  249. element.parentClass.Accept(visitor2);
  250. element._Name = appData.programDatas[ i ].name;
  251. element.Id = appData.programDatas[ i ].guid;
  252. element.SourcesName = appData.programDatas[ i ].sourcesName;
  253. Canvas.SetLeft(element.rect, appData.programDatas[ i ].point.X);
  254. Canvas.SetTop(element.rect, appData.programDatas[ i ].point.Y);
  255. Canvas.Children.Add(element.rect);
  256. element.rect.MouseDown += Rect_MouseDown;
  257. element.rect.MouseMove += Rect_MouseMove;
  258. element.rect.MouseUp += Rect_MouseUp; ;
  259. element.rect.MouseEnter += Rect_MouseEnter;
  260. element.rect.MouseLeave += Rect_MouseLeave;
  261. element.rect.MouseRightButtonDown += Rect_MouseRightButtonDown;
  262. CurrentFlowElements.Add(element);
  263. if ( element.parentClass is StartService )
  264. {
  265. CurrentStartElement = element;
  266. }
  267. _CurrentFlowSelectElement = null;
  268. CurrentSelectElement = null;
  269. }
  270. List< xmLine > loadLineList=new List<xmLine>();
  271. for ( int i = 0; i < CurrentFlowElements.Count; i++ )
  272. {
  273. for ( int j = 0; j < appData.programDatas[ i ].LinePoint.Count; j++ )
  274. {
  275. Connection_Line = new Connection_Line(Canvas);
  276. Connection_Line.curveModel.StartPoint = appData.programDatas[ i ].LinePoint[ j ].startPoint;
  277. Connection_Line.curveModel.EndPoint = appData.programDatas[ i ].LinePoint[ j ].endPoint;
  278. Connection_Line.curveModel.StartPoint = appData.programDatas[ i ].LinePoint[ j ].startPoint;
  279. if ( loadLineList.Find(x => x.startPoint == Connection_Line.curveModel.StartPoint && x.endPoint == Connection_Line.curveModel.EndPoint) == null )
  280. {
  281. loadLineList.Add(appData.programDatas[ i ].LinePoint[ j ]);
  282. }
  283. }
  284. }
  285. bool sok=true;
  286. bool eok=true;
  287. for ( int j = 0; j < loadLineList.Count; j++ )
  288. {
  289. Connection_Line = new Connection_Line(Canvas);
  290. sok = true;
  291. eok = true;
  292. for ( int i = 0; i < CurrentFlowElements.Count; i++ )
  293. {
  294. if ( CurrentFlowElements[ i ].Id == loadLineList[ j ].startGuid && sok )
  295. {
  296. Connection_Line.Startelement = CurrentFlowElements[ i ];
  297. Connection_Line.curveModel.StartPoint = loadLineList[ j ].startPoint;
  298. Connection_Line.curveModel.EndPoint = loadLineList[ j ].endPoint;
  299. Connection_Line.curveModel.StartPoint = loadLineList[ j ].startPoint;
  300. CurrentFlowElements[ i ].connection_Lines.Add(Connection_Line);
  301. sok = false;
  302. }
  303. if ( CurrentFlowElements[ i ].Id == loadLineList[ j ].endGuid && eok )
  304. {
  305. Connection_Line.Endelement = CurrentFlowElements[ i ];
  306. Connection_Line.curveModel.StartPoint = loadLineList[ j ].startPoint;
  307. Connection_Line.curveModel.EndPoint = loadLineList[ j ].endPoint;
  308. Connection_Line.curveModel.StartPoint = loadLineList[ j ].startPoint;
  309. CurrentFlowElements[ i ].connection_Lines.Add(Connection_Line);
  310. eok = false;
  311. }
  312. if ( !eok && !sok )
  313. {
  314. Connection_Line.Drewbezier(this.Canvas);
  315. break;
  316. }
  317. }
  318. }
  319. CurrentStatus = "加载完成";
  320. }
  321. public void ClearPrograms()
  322. {
  323. CurrentFlowElements.Clear();
  324. Canvas.Children.Clear();
  325. CurrentStatus = "清除完成";
  326. }
  327. public void RunPrograms()
  328. {
  329. if (StaticManualResetEvent.ManualisStopEvent.WaitOne(50) ) return;
  330. StaticManualResetEvent.ManualisStopEvent.Set();
  331. Thread RunProgramsThread=new Thread(()=>
  332. {
  333. while ( StaticManualResetEvent.ManualisStopEvent.WaitOne(50) )
  334. {
  335. CurrentIndex=0;
  336. for ( int i = 0; i < CurrentStartElement.connection_Lines.Count; i++ )
  337. {
  338. RunIVisitor visitor = new RunConcreteVisitor(); // 创建访问者实例
  339. if(CurrentStartElement.connection_Lines[ 0 ].Endelement.parentClass.AcceptRun(visitor))
  340. {
  341. CurrentStatus = "停止";
  342. StaticManualResetEvent.ManualisStopEvent.Reset();
  343. return;
  344. }
  345. GetProgram(CurrentStartElement.connection_Lines[ 0 ].Endelement);
  346. }
  347. }
  348. CurrentStatus = "停止";
  349. });
  350. RunProgramsThread.Name = "流程运行线程";
  351. RunProgramsThread.IsBackground = true;
  352. RunProgramsThread.Start();
  353. CurrentStatus = "运行中";
  354. }
  355. public void StopPrograms()
  356. {
  357. StaticManualResetEvent.ManualisStopEvent.Reset();
  358. }
  359. public void GetProgram(Element element)
  360. {
  361. for ( int i = 0; i < element.connection_Lines.Count; i++ )
  362. {
  363. CurrentIndex++;
  364. if ( !StaticManualResetEvent.ManualisStopEvent.WaitOne(50) ) return;
  365. if ( element.connection_Lines[ i ].Startelement == element )
  366. {
  367. RunIVisitor visitor = new RunConcreteVisitor(); // 创建访问者实例
  368. if (element.connection_Lines[i].Endelement.parentClass.AcceptRun(visitor))
  369. {
  370. StaticManualResetEvent.ManualisStopEvent.Reset();
  371. return;
  372. }
  373. }
  374. if ( element.connection_Lines[ i ].Endelement != element )
  375. GetProgram(element.connection_Lines[ i ].Endelement);
  376. }
  377. }
  378. }
  379. }