InternalLine.cs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Windows;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Media;
  8. namespace SketchAssistantWPF
  9. {
  10. public class InternalLine
  11. {
  12. /// <summary>
  13. /// list saving all the points of the line in the order of the path from start to end point
  14. /// </summary>
  15. private List<Point> linePoints;
  16. /// <summary>
  17. /// unique identifier of this Line object
  18. /// </summary>
  19. private int identifier;
  20. /// <summary>
  21. /// flag showing if this is only a temporary line
  22. /// </summary>
  23. private bool isTemporary;
  24. /// <summary>
  25. /// A collection of the original Points defining the line.
  26. /// </summary>
  27. private PointCollection pointColl;
  28. /// <summary>
  29. /// Indicates if this is a single point.
  30. /// </summary>
  31. public bool isPoint { get; private set; }
  32. /// <summary>
  33. /// The location of the point, if this is a point
  34. /// </summary>
  35. public Point point { get; private set; }
  36. /// <summary>
  37. /// The length of the line
  38. /// </summary>
  39. private double length = -1;
  40. /// <summary>
  41. /// The constructor for lines which are only temporary.
  42. /// If you want nice lines use the other constructor.
  43. /// </summary>
  44. /// <param name="points">The points of the line</param>
  45. public InternalLine(List<Point> points)
  46. {
  47. linePoints = new List<Point>(points);
  48. pointColl = new PointCollection(linePoints);
  49. isTemporary = true;
  50. }
  51. /// <summary>
  52. /// The constructor for lines, which will be more resource efficient
  53. /// and have the ability to populate deletion matrixes.
  54. /// </summary>
  55. /// <param name="points">The points of the line</param>
  56. /// <param name="id">The identifier of the line</param>
  57. public InternalLine(List<Point> points, int id)
  58. {
  59. linePoints = new List<Point>(points);
  60. pointColl = new PointCollection(linePoints);
  61. identifier = id;
  62. CleanPoints();
  63. isTemporary = false;
  64. }
  65. /// <summary>
  66. /// A function to make temporary lines non-temporary.
  67. /// </summary>
  68. /// <param name="id">The id of the line.</param>
  69. public void MakePermanent(int id)
  70. {
  71. if (isTemporary)
  72. {
  73. identifier = id;
  74. CleanPoints();
  75. isTemporary = false;
  76. }
  77. }
  78. public Point GetStartPoint()
  79. {
  80. return linePoints.First();
  81. }
  82. public Point GetEndPoint()
  83. {
  84. return linePoints.Last();
  85. }
  86. public List<Point> GetPoints()
  87. {
  88. return linePoints;
  89. }
  90. public int GetID()
  91. {
  92. return identifier;
  93. }
  94. public PointCollection GetPointCollection()
  95. {
  96. return pointColl;
  97. }
  98. public double GetLength()
  99. {
  100. if(length < 0)
  101. {
  102. length = 0;
  103. for(int i = 0; i < linePoints.Count - 1; i++)
  104. {
  105. var a = linePoints[i]; var b = linePoints[i + 1];
  106. length += Math.Sqrt(Math.Pow((a.X - b.X),2) + Math.Pow((a.Y - b.Y), 2));
  107. }
  108. }
  109. return length;
  110. }
  111. /// <summary>
  112. /// A function that will take two matrixes and populate them with the line data of this line object
  113. /// </summary>
  114. /// <param name="boolMatrix">The Matrix of booleans, in which is saved wether there is a line at this position.</param>
  115. /// <param name="listMatrix">The Matrix of Lists of integers, in which is saved which lines are at this position</param>
  116. public void PopulateMatrixes(bool[,] boolMatrix, HashSet<int>[,] listMatrix)
  117. {
  118. if (!isTemporary)
  119. {
  120. foreach (Point currPoint in linePoints)
  121. {
  122. if (currPoint.X >= 0 && currPoint.Y >= 0 &&
  123. currPoint.X < boolMatrix.GetLength(0) && currPoint.Y < boolMatrix.GetLength(1))
  124. {
  125. boolMatrix[(int) currPoint.X, (int) currPoint.Y] = true;
  126. if (listMatrix[(int) currPoint.X, (int) currPoint.Y] == null)
  127. {
  128. listMatrix[(int) currPoint.X, (int) currPoint.Y] = new HashSet<int>();
  129. }
  130. listMatrix[(int) currPoint.X, (int) currPoint.Y].Add(identifier);
  131. }
  132. }
  133. }
  134. }
  135. /// <summary>
  136. /// Removes duplicate points from the line object
  137. /// </summary>
  138. private void CleanPoints()
  139. {
  140. if (linePoints.Any())
  141. {
  142. //check if its a point
  143. var localIsPoint = linePoints.All(o => o.X == linePoints.First().X && o.Y == linePoints.First().Y);
  144. if (!localIsPoint) {
  145. List<Point> newList = new List<Point>();
  146. List<Point> tempList = new List<Point>();
  147. //Since Point is non-nullable, we must ensure the nullPoints,
  148. //which we remove can not possibly be points of the original given line.
  149. int nullValue = (int) linePoints[0].X + 1;
  150. //Fill the gaps between points
  151. for (int i = 0; i < linePoints.Count - 1; i++)
  152. {
  153. nullValue += (int) linePoints[i + 1].X;
  154. List<Point> partialList = GeometryCalculator.BresenhamLineAlgorithm(linePoints[i], linePoints[i + 1]);
  155. tempList.AddRange(partialList);
  156. }
  157. Point nullPoint = new Point(nullValue, 0);
  158. //Set duplicate points to the null point
  159. for (int i = 1; i < tempList.Count; i++)
  160. {
  161. if ((tempList[i].X == tempList[i - 1].X) && (tempList[i].Y == tempList[i - 1].Y))
  162. {
  163. tempList[i - 1] = nullPoint;
  164. }
  165. }
  166. //remove the null points
  167. foreach (Point tempPoint in tempList)
  168. {
  169. if (tempPoint.X != nullValue)
  170. {
  171. newList.Add(tempPoint);
  172. }
  173. }
  174. linePoints = new List<Point>(newList);
  175. }
  176. else
  177. {
  178. isPoint = true;
  179. point = linePoints.First();
  180. linePoints.Clear();
  181. linePoints.Add(point);
  182. }
  183. }
  184. }
  185. }
  186. }