Beispiel #1
0
 protected void Construct(Module root)
 {
     moduleSequence = new List<Module>();
     moduleSequence.Add(root);
     whereMax = root;
     insertationIndex = -1;
 }
Beispiel #2
0
 /// <summary>
 /// Contour class for quick computation of y-coordinates during working with horizontal O-Tree.
 /// </summary>
 /// <param name="root">First element of the contour.</param>
 public HorizontalContour(Module root)
 {
     Construct(root);
 }
Beispiel #3
0
        /// <summary>
        /// Operation of horizontal O-tree. Calculates coordinates and takes one compaction step.
        /// </summary>
        /// <returns>Vertical constraint graph</returns>
        private Graph ToVerticalConstraintGraph()
        { 
            //Empty module representing the root of the tree
            Module root = new Module(-1, null, 0);
            modules.Add(-1, root);
            oTree.ModuleSequence.Insert(0, -1);

            //Stack containing module labels for parent module calculation
            Stack<int> stack = new Stack<int>();
            stack.Push(-1);

            //Vertical contsraint graph
            Graph constraintGraph = new Graph(oTree.ModuleSequence);

            //Actual parent and child module
            Module parent = root;
            Module child;

            //Horizontal contour for quick y-coordinate calculation
            Contour contour = new HorizontalContour(root);

            //Index of child module in ModuleSequence
            int childIndex = 0;

            foreach (Bit bit in oTree.DfsSequence)
            {
                //Forth step in DFS traversing, coordinates need to be calcuted
                if (bit == 0)
                {
                    child = modules[oTree.ModuleSequence[++childIndex]];

                    //In horizontal O-tree, child module is on the rigth side of the parent module and adjacent with it
                    child.X = parent.X + parent.Width;
                    //Finding the minimum y-coordinate
                    child.Y = contour.FindMax(child.X + child.Width);

                    //There is an egde in the vertical constraint graph, where the minimum is found
                    constraintGraph.AddEdge(contour.WhereMax.Name, child.Name, child.X);

                    //Updating contour
                    contour.Update(child);

                    //Now child module is the actual parent
                    parent = child;
                    stack.Push(parent.Name);
                }

                //Back step in DFS traversing
                else
                {
                    //Updating parent module and the insertation index of the contour
                    stack.Pop();
                    parent = modules[stack.Peek()];
                    contour.InsertationIndex = contour.ModuleSequence.IndexOf(parent);
                }

            }

            //Removing root module
            modules.Remove(-1);
            oTree.ModuleSequence.RemoveAt(0);

            return constraintGraph;
        }
Beispiel #4
0
 /// <summary>
 /// Inserts new module into the contour and clears WhereMax value.
 /// </summary>
 /// <param name="module"></param>
 public void Update(Module module)
 {
     moduleSequence.Insert(++insertationIndex, module);
     whereMax = new Module(-1, null, 0);
 }
Beispiel #5
0
 /// <summary>
 /// Contour class for quick computation of x-coordinates during working with vertical O-Tree.
 /// </summary>
 /// <param name="root">First element of the contour.</param>
 public VerticalContour(Module root)
 {
     Construct(root);
 }
Beispiel #6
0
 /// <summary>
 /// Deep copy.
 /// </summary>
 /// <returns></returns>
 public Module Copy()
 {
     Module copy = new Module(name, image, whiteSpace);
     copy.xCoordinate = xCoordinate;
     copy.yCoordinate = yCoordinate;
     return copy;
 }