using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Drawing; namespace SketchAssistant { public class Line { /// /// list saving all the points of the line in the order of the path from start to end point /// private List linePoints; /// /// unique identifier of this Line object /// private int identifier; /// /// flag showing if this is only a temporary line /// private bool isTemporary; /// /// The constructor for lines which are only temporary. /// If you want nice lines use the other constructor. /// /// The points of the line public Line(List points) { linePoints = new List(points); isTemporary = true; } /// /// The constructor for lines, which will be more resource efficient /// and have the ability to populate deletion matrixes. /// /// The points of the line /// The identifier of the line public Line(List points, int id) { linePoints = new List(points); identifier = id; CleanPoints(); isTemporary = false; } public Point GetStartPoint() { return linePoints.First(); } public Point GetEndPoint() { return linePoints.Last(); } public List GetPoints() { return linePoints; } public int GetID() { return identifier; } /// /// A function that takes a Graphics element and returns it with /// the line drawn on it. /// /// The Graphics element on which the line shall be drawn /// The given Graphics element with the additional line public Graphics DrawLine(Graphics canvas) { for(int i = 0; i < linePoints.Count - 1 ; i++) { canvas.DrawLine(Pens.Black, linePoints[i], linePoints[i + 1]); } //If there is only one point if(linePoints.Count == 1){ canvas.FillRectangle(Brushes.Black, linePoints[0].X, linePoints[0].Y, 1, 1); } return canvas; } /// /// A function that will take to matrixes and populate the with the line data of this line object /// /// The Matrix of booleans, in which is saved wether there is a line at this position. /// The Matrix of Lists of integers, in which is saved which lines are at this position public void PopulateMatrixes(bool[,] boolMatrix, HashSet[,] listMatrix) { if(!isTemporary) { foreach (Point currPoint in linePoints) { if (currPoint.X >= 0 && currPoint.Y >= 0 && currPoint.X < boolMatrix.GetLength(0) && currPoint.Y < boolMatrix.GetLength(1)) { boolMatrix[currPoint.X, currPoint.Y] = true; if (listMatrix[currPoint.X, currPoint.Y] == null) { listMatrix[currPoint.X, currPoint.Y] = new HashSet(); } listMatrix[currPoint.X, currPoint.Y].Add(identifier); } } } } /// /// Removes duplicate points from the line object /// private void CleanPoints() { if (linePoints.Count > 1) { List newList = new List(); List tempList = new List(); //Since Point is non-nullable, we must ensure the nullPoints, //which we remove can not possibly be points of the original given line. int nullValue = linePoints[0].X + 1; //Fill the gaps between points for (int i = 0; i < linePoints.Count - 1; i++) { nullValue += linePoints[i + 1].X; List partialList = GeometryCalculator.BresenhamLineAlgorithm(linePoints[i], linePoints[i + 1]); tempList.AddRange(partialList); } Point nullPoint = new Point(nullValue, 0); //Set duplicate points to the null point for (int i = 1; i < tempList.Count; i++) { if ((tempList[i].X == tempList[i - 1].X) && (tempList[i].Y == tempList[i - 1].Y)) { tempList[i - 1] = nullPoint; } } //remove the null points foreach (Point tempPoint in tempList) { if (tempPoint.X != nullValue) { newList.Add(tempPoint); } } linePoints = new List(newList); } } } }