1
|
using System;
|
2
|
using System.Collections.Generic;
|
3
|
using System.Linq;
|
4
|
using System.Text;
|
5
|
using System.Threading.Tasks;
|
6
|
using Newtonsoft.Json;
|
7
|
using System.IO;
|
8
|
using Converter.SPPID.DB;
|
9
|
using Converter.BaseModel;
|
10
|
using System.Windows.Forms;
|
11
|
using Converter.SPPID.Model;
|
12
|
using System.Drawing;
|
13
|
|
14
|
namespace Converter.SPPID.Util
|
15
|
{
|
16
|
public enum SlopeType
|
17
|
{
|
18
|
None,
|
19
|
Slope,
|
20
|
HORIZONTAL,
|
21
|
VERTICAL
|
22
|
}
|
23
|
public class SPPIDUtil
|
24
|
{
|
25
|
public static bool ConvertToSPPIDInfo(string jsonString)
|
26
|
{
|
27
|
SPPID_DBInfo _SPPIDInfo = SPPID_DBInfo.GetInstance();
|
28
|
try
|
29
|
{
|
30
|
SPPID_DBInfo jsonSPPIDInfo = JsonConvert.DeserializeObject<SPPID_DBInfo>(jsonString);
|
31
|
|
32
|
_SPPIDInfo.DBType = jsonSPPIDInfo.DBType;
|
33
|
_SPPIDInfo.Service = jsonSPPIDInfo.Service;
|
34
|
_SPPIDInfo.Site = jsonSPPIDInfo.Site;
|
35
|
_SPPIDInfo.ServerIP = jsonSPPIDInfo.ServerIP;
|
36
|
_SPPIDInfo.Port = jsonSPPIDInfo.Port;
|
37
|
_SPPIDInfo.DBUser = jsonSPPIDInfo.DBUser;
|
38
|
_SPPIDInfo.DBPassword = jsonSPPIDInfo.DBPassword;
|
39
|
_SPPIDInfo.PlantPath = jsonSPPIDInfo.PlantPath;
|
40
|
_SPPIDInfo.PlantDic = jsonSPPIDInfo.PlantDic;
|
41
|
_SPPIDInfo.PlantPID = jsonSPPIDInfo.PlantPID;
|
42
|
_SPPIDInfo.PlantPIDDic = jsonSPPIDInfo.PlantPIDDic;
|
43
|
_SPPIDInfo.Plant = jsonSPPIDInfo.Plant;
|
44
|
_SPPIDInfo.Enable = jsonSPPIDInfo.Enable;
|
45
|
_SPPIDInfo.SelectedPlant = jsonSPPIDInfo.SelectedPlant;
|
46
|
_SPPIDInfo.PlantList = jsonSPPIDInfo.PlantList;
|
47
|
|
48
|
}
|
49
|
catch (Exception ex)
|
50
|
{
|
51
|
_SPPIDInfo.Enable = false;
|
52
|
return false;
|
53
|
}
|
54
|
return true;
|
55
|
}
|
56
|
|
57
|
public static bool ConvertToETCSetting(string jsonString)
|
58
|
{
|
59
|
ETCSetting _ETCSetting = ETCSetting.GetInstance();
|
60
|
try
|
61
|
{
|
62
|
ETCSetting jsonETCSetting = JsonConvert.DeserializeObject<ETCSetting>(jsonString);
|
63
|
|
64
|
_ETCSetting.NoteSymbolPath = jsonETCSetting.NoteSymbolPath;
|
65
|
_ETCSetting.TextSymbolPath = jsonETCSetting.TextSymbolPath;
|
66
|
_ETCSetting.DrainValveSize = jsonETCSetting.DrainValveSize;
|
67
|
_ETCSetting.TextLocation = jsonETCSetting.TextLocation;
|
68
|
_ETCSetting.NoteLocation = jsonETCSetting.NoteLocation;
|
69
|
_ETCSetting.LineNumberLocation = jsonETCSetting.LineNumberLocation;
|
70
|
_ETCSetting.FlowMarkSymbolPath = jsonETCSetting.FlowMarkSymbolPath;
|
71
|
}
|
72
|
catch (Exception ex)
|
73
|
{
|
74
|
return false;
|
75
|
}
|
76
|
return true;
|
77
|
}
|
78
|
|
79
|
public static bool ConvertToGridSetting(string jsonString)
|
80
|
{
|
81
|
GridSetting _GridSetting = GridSetting.GetInstance();
|
82
|
try
|
83
|
{
|
84
|
GridSetting jsonGridSetting = JsonConvert.DeserializeObject<GridSetting>(jsonString);
|
85
|
|
86
|
_GridSetting.UseSnapGrid = jsonGridSetting.UseSnapGrid;
|
87
|
_GridSetting.Density = jsonGridSetting.Density;
|
88
|
_GridSetting.Unit = jsonGridSetting.Unit;
|
89
|
}
|
90
|
catch (Exception ex)
|
91
|
{
|
92
|
return false;
|
93
|
}
|
94
|
return true;
|
95
|
}
|
96
|
|
97
|
public static bool ConvertPointBystring(string sPoint, ref double dX, ref double dY)
|
98
|
{
|
99
|
try
|
100
|
{
|
101
|
string[] pointArr = sPoint.Split(new char[] { ',' });
|
102
|
if (pointArr.Length == 2)
|
103
|
{
|
104
|
dX = Convert.ToDouble(pointArr[0]);
|
105
|
dY = Convert.ToDouble(pointArr[1]);
|
106
|
}
|
107
|
}
|
108
|
catch (Exception)
|
109
|
{
|
110
|
dX = 0;
|
111
|
dY = 0;
|
112
|
return false;
|
113
|
}
|
114
|
|
115
|
return true;
|
116
|
}
|
117
|
|
118
|
public static void ConvertSPPIDPoint(ref double dX, ref double dY, double dDwgX, double dDwgY, double SPPID_Width, double SPPID_Height)
|
119
|
{
|
120
|
decimal calcX = 0;
|
121
|
decimal calcY = 0;
|
122
|
decimal tempX = Convert.ToDecimal(dX);
|
123
|
decimal tempY = Convert.ToDecimal(dY);
|
124
|
decimal tempWidth = Convert.ToDecimal(SPPID_Width);
|
125
|
decimal tempHeight = Convert.ToDecimal(SPPID_Height);
|
126
|
decimal tempDwgX = Convert.ToDecimal(dDwgX);
|
127
|
decimal tempDwgY = Convert.ToDecimal(dDwgY);
|
128
|
|
129
|
calcX = (tempX * tempWidth) / tempDwgX;
|
130
|
calcY = tempHeight - ((tempY * tempHeight) / tempDwgY);
|
131
|
dX = Convert.ToDouble(calcX);
|
132
|
dY = Convert.ToDouble(calcY);
|
133
|
}
|
134
|
|
135
|
public static void ConvertGridPoint(ref double x, ref double y)
|
136
|
{
|
137
|
GridSetting _GridSetting = GridSetting.GetInstance();
|
138
|
if (_GridSetting.UseSnapGrid)
|
139
|
{
|
140
|
if (_GridSetting.Unit == GridUnit.Inch)
|
141
|
{
|
142
|
double length = _GridSetting.Density * 0.0254;
|
143
|
double tempX = x;
|
144
|
double tempY = y;
|
145
|
x = Math.Round(tempX / length) * length;
|
146
|
y = Math.Round(tempY / length) * length;
|
147
|
}
|
148
|
}
|
149
|
}
|
150
|
|
151
|
public static void ConvertGridPointOnlyOnePoint(ref double value)
|
152
|
{
|
153
|
GridSetting _GridSetting = GridSetting.GetInstance();
|
154
|
if (_GridSetting.UseSnapGrid)
|
155
|
{
|
156
|
if (_GridSetting.Unit == GridUnit.Inch)
|
157
|
{
|
158
|
double temp = value;
|
159
|
value = Math.Round(value / _GridSetting.Length) * _GridSetting.Length;
|
160
|
}
|
161
|
}
|
162
|
}
|
163
|
public static double ConvertGridPointOnlyOnePoint(double value)
|
164
|
{
|
165
|
GridSetting _GridSetting = GridSetting.GetInstance();
|
166
|
if (_GridSetting.UseSnapGrid)
|
167
|
{
|
168
|
if (_GridSetting.Unit == GridUnit.Inch)
|
169
|
{
|
170
|
double temp = value;
|
171
|
value = Math.Round(value / _GridSetting.Length) * _GridSetting.Length;
|
172
|
}
|
173
|
}
|
174
|
|
175
|
return value;
|
176
|
}
|
177
|
|
178
|
public static SlopeType CalcSlope(double x1, double y1, double x2, double y2)
|
179
|
{
|
180
|
if (x1 - x2 == 0)
|
181
|
{
|
182
|
return SlopeType.VERTICAL;
|
183
|
}
|
184
|
else
|
185
|
{
|
186
|
double angle = Math.Atan(Math.Abs(y2 - y1) / Math.Abs(x2 - x1)) * 180 / Math.PI;
|
187
|
if (angle <= 15)
|
188
|
return SlopeType.HORIZONTAL;
|
189
|
else if (angle >= 75)
|
190
|
return SlopeType.VERTICAL;
|
191
|
else
|
192
|
return SlopeType.Slope;
|
193
|
}
|
194
|
}
|
195
|
public static double CalcAngle(double x1, double y1, double x2, double y2)
|
196
|
{
|
197
|
double result = 90;
|
198
|
if (x1 - x2 != 0)
|
199
|
{
|
200
|
result = Math.Atan(Math.Abs(y2 - y1) / Math.Abs(x2 - x1)) * 180 / Math.PI;
|
201
|
}
|
202
|
return result;
|
203
|
}
|
204
|
public static double CalcLineToPointDistance(double lineX1, double lineY1, double lineX2, double lineY2, double x, double y)
|
205
|
{
|
206
|
|
207
|
double distance = 0;
|
208
|
if (lineX1 == lineX2)
|
209
|
distance = Math.Abs(x - lineX1);
|
210
|
else
|
211
|
{
|
212
|
double a;
|
213
|
double b;
|
214
|
double c;
|
215
|
|
216
|
a = (lineY2 - lineY1) / (lineX2 - lineX1);
|
217
|
b = -1;
|
218
|
c = -a * lineX1 + lineY1;
|
219
|
|
220
|
distance = Math.Abs(a * x + b * y + c) / Math.Pow(a * a + b * b, 0.5);
|
221
|
}
|
222
|
return distance;
|
223
|
}
|
224
|
|
225
|
public static double[] CalcLineCrossingPoint(double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4)
|
226
|
{
|
227
|
double a1;
|
228
|
double a2;
|
229
|
double b1;
|
230
|
double b2;
|
231
|
|
232
|
if (x1 == x2)
|
233
|
a1 = 0;
|
234
|
else
|
235
|
a1 = (y2 - y1) / (x2 - x1);
|
236
|
if (x3 == x4)
|
237
|
a2 = 0;
|
238
|
else
|
239
|
a2 = (y4 - y3) / (x4 - x3);
|
240
|
|
241
|
b1 = -a1 * x1 + y1;
|
242
|
b2 = -a2 * x3 + y3;
|
243
|
|
244
|
if (x1 == x2 && x3 == x4)
|
245
|
{
|
246
|
return null;
|
247
|
}
|
248
|
else if (x1 == x2)
|
249
|
{
|
250
|
return new double[] { x1, a2*x1 + b2 };
|
251
|
}
|
252
|
else if (x3 == x4)
|
253
|
{
|
254
|
return new double[] { x3, a1 * x3 + b1 };
|
255
|
}
|
256
|
else
|
257
|
{
|
258
|
return new double[] { -(b1 - b2) / (a1 - a2), a1 * -(b1 - b2) / (a1 - a2) + b1 };
|
259
|
}
|
260
|
}
|
261
|
|
262
|
public static double CalcGradient(double x1, double y1, double x2, double y2)
|
263
|
{
|
264
|
double result = double.NaN;
|
265
|
|
266
|
if (x1 != x2)
|
267
|
result = (y2 - y1) / (x2 - x1);
|
268
|
|
269
|
return result;
|
270
|
}
|
271
|
|
272
|
public static double CalcPointToPointdDistance(double x1, double y1, double x2, double y2)
|
273
|
{
|
274
|
return Math.Pow(Math.Pow(x1 - x2, 2) + Math.Pow(y1 - y2, 2), 0.5);
|
275
|
}
|
276
|
|
277
|
public static object FindObjectByUID(Document document, string UID)
|
278
|
{
|
279
|
if (!string.IsNullOrEmpty(UID) && UID != "None")
|
280
|
{
|
281
|
foreach (Symbol item in document.SYMBOLS)
|
282
|
{
|
283
|
if (item.UID == UID)
|
284
|
return item;
|
285
|
}
|
286
|
|
287
|
foreach (Line item in document.LINES)
|
288
|
{
|
289
|
if (item.UID == UID)
|
290
|
return item;
|
291
|
}
|
292
|
|
293
|
foreach (Text item in document.TEXTINFOS)
|
294
|
{
|
295
|
if (item.UID == UID)
|
296
|
return item;
|
297
|
}
|
298
|
|
299
|
foreach (Note item in document.NOTES)
|
300
|
{
|
301
|
if (item.UID == UID)
|
302
|
return item;
|
303
|
}
|
304
|
|
305
|
foreach (LineNumber item in document.LINENUMBERS)
|
306
|
{
|
307
|
if (item.UID == UID)
|
308
|
return item;
|
309
|
}
|
310
|
|
311
|
foreach (Equipment item in document.Equipments)
|
312
|
{
|
313
|
if (item.UID == UID)
|
314
|
return item;
|
315
|
}
|
316
|
|
317
|
foreach (SpecBreak item in document.SpecBreaks)
|
318
|
{
|
319
|
if (item.UID == UID)
|
320
|
return item;
|
321
|
}
|
322
|
|
323
|
foreach (EndBreak item in document.EndBreaks)
|
324
|
{
|
325
|
if (item.UID == UID)
|
326
|
return item;
|
327
|
}
|
328
|
}
|
329
|
|
330
|
return null;
|
331
|
}
|
332
|
|
333
|
public static List<Line> FindLinesByModelId(Document document, string ModelItemId)
|
334
|
{
|
335
|
List<Line> lines = new List<Line>();
|
336
|
foreach (Line item in document.LINES)
|
337
|
{
|
338
|
if (item.SPPID.ModelItemId == ModelItemId)
|
339
|
lines.Add(item);
|
340
|
}
|
341
|
|
342
|
return lines;
|
343
|
}
|
344
|
|
345
|
public static void FindConnectedSymbolGroup(Document document, Symbol symbol, List<Symbol> group)
|
346
|
{
|
347
|
if (!group.Contains(symbol))
|
348
|
group.Add(symbol);
|
349
|
|
350
|
foreach (var connector in symbol.CONNECTORS)
|
351
|
{
|
352
|
object connectedItem = FindObjectByUID(document, connector.CONNECTEDITEM);
|
353
|
if (connectedItem != null && connectedItem.GetType() == typeof(Symbol))
|
354
|
{
|
355
|
Symbol connSymbol = connectedItem as Symbol;
|
356
|
if (!group.Contains(connSymbol))
|
357
|
{
|
358
|
group.Add(connSymbol);
|
359
|
FindConnectedSymbolGroup(document, connSymbol, group);
|
360
|
}
|
361
|
}
|
362
|
}
|
363
|
}
|
364
|
|
365
|
public static Symbol FindCenterAtThreeSymbols(Document document, List<Symbol> group)
|
366
|
{
|
367
|
Symbol result = null;
|
368
|
|
369
|
// Group의 가운데 찾기
|
370
|
if (group.Count == 3)
|
371
|
{
|
372
|
foreach (var symbol in group)
|
373
|
{
|
374
|
int count = 0;
|
375
|
foreach (var connector in symbol.CONNECTORS)
|
376
|
{
|
377
|
object item = FindObjectByUID(document, connector.CONNECTEDITEM);
|
378
|
if (item != null && item.GetType() == typeof(Symbol) && group.Contains(item as Symbol))
|
379
|
count++;
|
380
|
}
|
381
|
|
382
|
if (count == 2)
|
383
|
{
|
384
|
result = symbol;
|
385
|
break;
|
386
|
}
|
387
|
}
|
388
|
}
|
389
|
|
390
|
return result;
|
391
|
}
|
392
|
|
393
|
private static void GetConnectedSymbol(Document document, Symbol symbol, List<Symbol> symbolGroup)
|
394
|
{
|
395
|
foreach (Connector connector in symbol.CONNECTORS)
|
396
|
{
|
397
|
object item = FindObjectByUID(document, connector.CONNECTEDITEM);
|
398
|
if (item != null && item.GetType() == typeof(Symbol))
|
399
|
{
|
400
|
Symbol connSymbol = item as Symbol;
|
401
|
if (connSymbol != null && !symbolGroup.Contains(connSymbol))
|
402
|
{
|
403
|
symbolGroup.Add(connSymbol);
|
404
|
GetConnectedSymbol(document, connSymbol, symbolGroup);
|
405
|
}
|
406
|
}
|
407
|
}
|
408
|
}
|
409
|
|
410
|
public static Connector FindSymbolConnectorByUID(Document document, string uid, Symbol targetSymbol)
|
411
|
{
|
412
|
foreach (var connector in targetSymbol.CONNECTORS)
|
413
|
{
|
414
|
if (connector.CONNECTEDITEM == uid)
|
415
|
{
|
416
|
return connector;
|
417
|
}
|
418
|
}
|
419
|
|
420
|
return null;
|
421
|
}
|
422
|
|
423
|
public static Symbol FindSymbolByRepresentationID(Document document, string repID)
|
424
|
{
|
425
|
Symbol findSymbol = null;
|
426
|
foreach (var symbol in document.SYMBOLS)
|
427
|
{
|
428
|
if (symbol.SPPID.RepresentationId == repID)
|
429
|
{
|
430
|
findSymbol = symbol;
|
431
|
}
|
432
|
else
|
433
|
{
|
434
|
ChildSymbol childSymbol = FindChildSymbolByRepresentationID(document, symbol, repID);
|
435
|
if (childSymbol != null)
|
436
|
findSymbol = symbol;
|
437
|
}
|
438
|
|
439
|
if (findSymbol != null)
|
440
|
break;
|
441
|
}
|
442
|
|
443
|
return findSymbol;
|
444
|
}
|
445
|
|
446
|
public static ChildSymbol FindChildSymbolByRepresentationID(Document document, Symbol symbol, string repID)
|
447
|
{
|
448
|
ChildSymbol childSymbol = null;
|
449
|
|
450
|
foreach (ChildSymbol loopChild in symbol.ChildSymbols)
|
451
|
{
|
452
|
if (loopChild.SPPID.RepresentationId == repID)
|
453
|
{
|
454
|
childSymbol = loopChild;
|
455
|
break;
|
456
|
}
|
457
|
else
|
458
|
{
|
459
|
childSymbol = FindChildSymbolByRepresentationIDLoop(document, repID, loopChild);
|
460
|
if (childSymbol != null)
|
461
|
break;
|
462
|
}
|
463
|
}
|
464
|
|
465
|
return childSymbol;
|
466
|
}
|
467
|
|
468
|
private static ChildSymbol FindChildSymbolByRepresentationIDLoop(Document document, string repID, ChildSymbol childSymbol)
|
469
|
{
|
470
|
ChildSymbol findChild = null;
|
471
|
|
472
|
foreach (var item in childSymbol.ChildSymbols)
|
473
|
{
|
474
|
if (item.SPPID.RepresentationId == repID)
|
475
|
{
|
476
|
findChild = item;
|
477
|
break;
|
478
|
}
|
479
|
else
|
480
|
{
|
481
|
findChild = FindChildSymbolByRepresentationIDLoop(document, repID, item);
|
482
|
if (findChild != null)
|
483
|
break;
|
484
|
}
|
485
|
}
|
486
|
|
487
|
return findChild;
|
488
|
}
|
489
|
|
490
|
public static bool IsBranchLine(Line line1, Line line2)
|
491
|
{
|
492
|
bool result = true;
|
493
|
|
494
|
Connector conn1 = line1.CONNECTORS.Find(x => x.CONNECTEDITEM == line2.UID);
|
495
|
Connector conn2 = line2.CONNECTORS.Find(x => x.CONNECTEDITEM == line1.UID);
|
496
|
|
497
|
if (conn1 != null && conn2 != null)
|
498
|
result = false;
|
499
|
|
500
|
return result;
|
501
|
}
|
502
|
|
503
|
public static bool IsBranchLine(Line line)
|
504
|
{
|
505
|
Connector connector = line.CONNECTORS.Find(x =>
|
506
|
x.ConnectedObject != null &&
|
507
|
x.ConnectedObject.GetType() == typeof(Line) &&
|
508
|
IsBranchLine(line, x.ConnectedObject as Line));
|
509
|
return connector != null ? true : false;
|
510
|
}
|
511
|
|
512
|
public static bool IsBranchedLine(Document document,Line line)
|
513
|
{
|
514
|
return document.LINES.Find(x => x.CONNECTORS.Find(y => y.CONNECTEDITEM == line.UID && IsBranchLine(x, y.ConnectedObject as Line)) != null) != null ? true : false;
|
515
|
}
|
516
|
|
517
|
public static void CalcOverlap(double[] range1, double[] range2, ref double x, ref double y, ref bool overlapX, ref bool overlapY)
|
518
|
{
|
519
|
if (range1[0] <= range2[2] && range1[2] >= range2[0])
|
520
|
{
|
521
|
overlapX = true;
|
522
|
x = Math.Min(Math.Abs(range1[0] - range2[2]), Math.Abs(range1[2] - range2[0]));
|
523
|
}
|
524
|
|
525
|
if (range1[1] <= range2[3] && range1[3] >= range2[1])
|
526
|
{
|
527
|
overlapY = true;
|
528
|
y = Math.Min(Math.Abs(range1[1] - range2[3]), Math.Abs(range1[3] - range2[1]));
|
529
|
}
|
530
|
}
|
531
|
|
532
|
public static bool IsOverlap(double[] range1, double[] range2)
|
533
|
{
|
534
|
if (range1[0] <= range2[2] && range1[2] >= range2[0] && range1[1] <= range2[3] && range1[3] >= range2[1])
|
535
|
return true;
|
536
|
else
|
537
|
return false;
|
538
|
}
|
539
|
|
540
|
public static void CalcNewCoordinateForSymbol(Symbol symbol, Symbol prevSymbol, double distanceX, double distanceY)
|
541
|
{
|
542
|
SlopeType slopeType = SPPIDUtil.CalcSlope(prevSymbol.SPPID.ORIGINAL_X, prevSymbol.SPPID.ORIGINAL_Y, symbol.SPPID.ORIGINAL_X, symbol.SPPID.ORIGINAL_Y);
|
543
|
GridSetting _GridSetting = GridSetting.GetInstance();
|
544
|
if (slopeType == SlopeType.HORIZONTAL)
|
545
|
{
|
546
|
double length = (Math.Ceiling(distanceX / _GridSetting.Length) + 1) * _GridSetting.Length;
|
547
|
if (prevSymbol.SPPID.ORIGINAL_X < symbol.SPPID.ORIGINAL_X)
|
548
|
symbol.SPPID.ORIGINAL_X = symbol.SPPID.ORIGINAL_X + length;
|
549
|
else
|
550
|
symbol.SPPID.ORIGINAL_X = symbol.SPPID.ORIGINAL_X - length;
|
551
|
}
|
552
|
else if (slopeType == SlopeType.VERTICAL)
|
553
|
{
|
554
|
double length = (Math.Ceiling(distanceY / _GridSetting.Length) + 1) * _GridSetting.Length;
|
555
|
if (prevSymbol.SPPID.ORIGINAL_Y < symbol.SPPID.ORIGINAL_Y)
|
556
|
symbol.SPPID.ORIGINAL_Y = symbol.SPPID.ORIGINAL_Y + length;
|
557
|
else
|
558
|
symbol.SPPID.ORIGINAL_Y = symbol.SPPID.ORIGINAL_Y - length;
|
559
|
}
|
560
|
}
|
561
|
|
562
|
public static bool GetLineConnectorPoint(Line line, Connector connector, ref double x, ref double y)
|
563
|
{
|
564
|
bool bStart = false;
|
565
|
int index = line.CONNECTORS.IndexOf(connector);
|
566
|
if (index == 0)
|
567
|
{
|
568
|
x = line.SPPID.START_X;
|
569
|
y = line.SPPID.START_Y;
|
570
|
bStart = true;
|
571
|
}
|
572
|
else
|
573
|
{
|
574
|
x = line.SPPID.END_X;
|
575
|
y = line.SPPID.END_Y;
|
576
|
}
|
577
|
return bStart;
|
578
|
}
|
579
|
|
580
|
public static bool IsSegmentLine(Document document, Line line)
|
581
|
{
|
582
|
bool result = false;
|
583
|
|
584
|
SpecBreak specBreak = document.SpecBreaks.Find(x =>
|
585
|
x.DownStreamUID == line.UID || x.UpStreamUID == line.UID);
|
586
|
|
587
|
EndBreak endBreak = document.EndBreaks.Find(x =>
|
588
|
x.OWNER == line.UID || x.PROPERTIES.Find(y => y.ATTRIBUTE == "Connected Item").VALUE == line.UID);
|
589
|
|
590
|
if (specBreak != null || endBreak != null)
|
591
|
result = true;
|
592
|
|
593
|
return result;
|
594
|
}
|
595
|
|
596
|
public static bool IsSegmentLineOnlyTarget(Document document, Line line)
|
597
|
{
|
598
|
bool result = false;
|
599
|
|
600
|
SpecBreak specBreak = document.SpecBreaks.Find(x =>
|
601
|
x.UpStreamUID == line.UID);
|
602
|
|
603
|
EndBreak endBreak = document.EndBreaks.Find(x =>
|
604
|
x.OWNER == line.UID);
|
605
|
|
606
|
if (specBreak != null || endBreak != null)
|
607
|
result = true;
|
608
|
|
609
|
return result;
|
610
|
}
|
611
|
|
612
|
public static bool IsSegmentLine(Document document, Line line1, Line line2)
|
613
|
{
|
614
|
bool result = false;
|
615
|
SpecBreak startSpecBreak = document.SpecBreaks.Find(x =>
|
616
|
(x.DownStreamUID == line1.UID || x.UpStreamUID == line1.UID) &&
|
617
|
(x.DownStreamUID == line2.UID || x.UpStreamUID == line2.UID));
|
618
|
|
619
|
EndBreak startEndBreak = document.EndBreaks.Find(x =>
|
620
|
(x.OWNER == line1.UID || x.PROPERTIES.Find(y => y.ATTRIBUTE == "Connected Item").VALUE == line1.UID) &&
|
621
|
(x.OWNER == line2.UID || x.PROPERTIES.Find(y => y.ATTRIBUTE == "Connected Item").VALUE == line2.UID));
|
622
|
|
623
|
if (startSpecBreak != null || startEndBreak != null)
|
624
|
result = true;
|
625
|
|
626
|
return result;
|
627
|
}
|
628
|
|
629
|
public static bool IsSegmentLine(Document document, Symbol symbol1, Symbol symbol2)
|
630
|
{
|
631
|
bool result = false;
|
632
|
SpecBreak startSpecBreak = document.SpecBreaks.Find(x =>
|
633
|
(x.DownStreamUID == symbol1.UID || x.UpStreamUID == symbol1.UID) &&
|
634
|
(x.DownStreamUID == symbol2.UID || x.UpStreamUID == symbol2.UID));
|
635
|
|
636
|
EndBreak startEndBreak = document.EndBreaks.Find(x =>
|
637
|
(x.OWNER == symbol1.UID || x.PROPERTIES.Find(y => y.ATTRIBUTE == "Connected Item").VALUE == symbol1.UID) &&
|
638
|
(x.OWNER == symbol2.UID || x.PROPERTIES.Find(y => y.ATTRIBUTE == "Connected Item").VALUE == symbol2.UID));
|
639
|
|
640
|
if (startSpecBreak != null || startEndBreak != null)
|
641
|
result = true;
|
642
|
|
643
|
return result;
|
644
|
}
|
645
|
}
|
646
|
}
|