src/Tools/Graphview/shapes.scala
author wenzelm
Sat, 03 Jan 2015 20:51:10 +0100
changeset 59249 50a3d663333a
parent 59248 167c2ebdfab4
child 59250 abe4c7cdac0e
permissions -rw-r--r--
tuned;

/*  Title:      Tools/Graphview/shapes.scala
    Author:     Markus Kaiser, TU Muenchen
    Author:     Makarius

Drawable shapes.
*/

package isabelle.graphview


import isabelle._

import java.awt.{BasicStroke, Graphics2D, Shape}
import java.awt.geom.{AffineTransform, GeneralPath, Path2D, Rectangle2D, PathIterator}


object Shapes
{
  private val default_stroke =
    new BasicStroke(1, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)

  object Growing_Node
  {
    def shape(m: Visualizer.Metrics, visualizer: Visualizer, node: Graph_Display.Node)
      : Rectangle2D.Double =
    {
      val (x, y) = visualizer.Coordinates(node)
      val bounds = m.string_bounds(node.toString)
      val w = bounds.getWidth + m.pad
      val h = bounds.getHeight + m.pad
      new Rectangle2D.Double((x - (w / 2)).floor, (y - (h / 2)).floor, w.ceil, h.ceil)
    }

    def paint(g: Graphics2D, visualizer: Visualizer, node: Graph_Display.Node)
    {
      val m = Visualizer.Metrics(g)
      val s = shape(m, visualizer, node)
      val c = visualizer.node_color(node)
      val bounds = m.string_bounds(node.toString)

      g.setColor(c.background)
      g.fill(s)

      g.setColor(c.border)
      g.setStroke(default_stroke)
      g.draw(s)

      g.setColor(c.foreground)
      g.drawString(node.toString,
        (s.getCenterX - bounds.getWidth / 2).round.toInt,
        (s.getCenterY - bounds.getHeight / 2 + m.ascent).round.toInt)
    }
  }

  object Dummy
  {
    private val identity = new AffineTransform()

    def shape(m: Visualizer.Metrics, visualizer: Visualizer, node: Graph_Display.Node): Shape =
    {
      val w = (m.space_width / 2).ceil
      new Rectangle2D.Double(- w, - w, 2 * w, 2 * w)
    }

    def paint(g: Graphics2D, visualizer: Visualizer, node: Graph_Display.Node): Unit =
      paint_transformed(g, visualizer, node, identity)

    def paint_transformed(g: Graphics2D, visualizer: Visualizer,
      node: Graph_Display.Node, at: AffineTransform)
    {
      val m = Visualizer.Metrics(g)
      val s = shape(m, visualizer, node)
      val c = visualizer.node_color(node)

      g.setStroke(default_stroke)
      g.setColor(c.border)
      g.draw(at.createTransformedShape(s))
    }
  }

  object Straight_Edge
  {
    def paint(g: Graphics2D, visualizer: Visualizer,
      edge: Graph_Display.Edge, head: Boolean, dummies: Boolean)
    {
      val (fx, fy) = visualizer.Coordinates(edge._1)
      val (tx, ty) = visualizer.Coordinates(edge._2)
      val ds =
      {
        val min = fy min ty
        val max = fy max ty
        visualizer.Coordinates(edge).filter({ case (_, y) => min < y && y < max })
      }
      val path = new GeneralPath(Path2D.WIND_EVEN_ODD, ds.length + 2)

      path.moveTo(fx, fy)
      ds.foreach({ case (x, y) => path.lineTo(x, y) })
      path.lineTo(tx, ty)

      if (dummies) {
        ds.foreach({
            case (x, y) => {
              val at = AffineTransform.getTranslateInstance(x, y)
              Dummy.paint_transformed(g, visualizer, Graph_Display.Node.dummy, at)
            }
          })
      }

      g.setStroke(default_stroke)
      g.setColor(visualizer.edge_color(edge))
      g.draw(path)

      if (head)
        Arrow_Head.paint(g, path, visualizer.Drawer.shape(Visualizer.Metrics(g), edge._2))
    }
  }

  object Cardinal_Spline_Edge
  {
    private val slack = 0.1

    def paint(g: Graphics2D, visualizer: Visualizer,
      edge: Graph_Display.Edge, head: Boolean, dummies: Boolean)
    {
      val (fx, fy) = visualizer.Coordinates(edge._1)
      val (tx, ty) = visualizer.Coordinates(edge._2)
      val ds =
      {
        val min = fy min ty
        val max = fy max ty
        visualizer.Coordinates(edge).filter({ case (_, y) => min < y && y < max })
      }

      if (ds.isEmpty) Straight_Edge.paint(g, visualizer, edge, head, dummies)
      else {
        val path = new GeneralPath(Path2D.WIND_EVEN_ODD, ds.length + 2)
        path.moveTo(fx, fy)

        val coords = ((fx, fy) :: ds ::: List((tx, ty)))
        val (dx, dy) = (coords(2)._1 - coords(0)._1, coords(2)._2 - coords(0)._2)

        val (dx2, dy2) =
          ((dx, dy) /: coords.sliding(3))({
            case ((dx, dy), List((lx, ly), (mx, my), (rx, ry))) => {
              val (dx2, dy2) = (rx - lx, ry - ly)

              path.curveTo(lx + slack * dx , ly + slack * dy,
                           mx - slack * dx2, my - slack * dy2,
                           mx              , my)
              (dx2, dy2)
            }
          })

        val (lx, ly) = ds.last
        path.curveTo(lx + slack * dx2, ly + slack * dy2,
                     tx - slack * dx2, ty - slack * dy2,
                     tx              , ty)

        if (dummies) {
          ds.foreach({
              case (x, y) => {
                val at = AffineTransform.getTranslateInstance(x, y)
                Dummy.paint_transformed(g, visualizer, Graph_Display.Node.dummy, at)
              }
            })
        }

        g.setStroke(default_stroke)
        g.setColor(visualizer.edge_color(edge))
        g.draw(path)

        if (head)
          Arrow_Head.paint(g, path, visualizer.Drawer.shape(Visualizer.Metrics(g), edge._2))
      }
    }
  }

  object Arrow_Head
  {
    type Point = (Double, Double)

    private def position(path: GeneralPath, shape: Shape): Option[AffineTransform] =
    {
      def intersecting_line(path: GeneralPath, shape: Shape): Option[(Point, Point)] =
      {
        val i = path.getPathIterator(null, 1.0)
        val seg = Array[Double](0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
        var p1 = (0.0, 0.0)
        var p2 = (0.0, 0.0)
        while (!i.isDone()) {
          i.currentSegment(seg) match {
            case PathIterator.SEG_MOVETO => p2 = (seg(0), seg(1))
            case PathIterator.SEG_LINETO =>
              p1 = p2
              p2 = (seg(0), seg(1))

              if(shape.contains(seg(0), seg(1)))
                return Some((p1, p2))
            case _ =>
          }
          i.next()
        }
        None
      }

      def binary_search(line: (Point, Point), shape: Shape): Option[AffineTransform] =
      {
        val ((fx, fy), (tx, ty)) = line
        if (shape.contains(fx, fy) == shape.contains(tx, ty))
          None
        else {
          val (dx, dy) = (fx - tx, fy - ty)
          if ((dx * dx + dy * dy) < 1.0) {
            val at = AffineTransform.getTranslateInstance(fx, fy)
            at.rotate(- (math.atan2(dx, dy) + math.Pi / 2))
            Some(at)
          }
          else {
            val (mx, my) = (fx + (tx - fx) / 2.0, fy + (ty - fy) / 2.0)
            if (shape.contains(fx, fy) == shape.contains(mx, my))
              binary_search(((mx, my), (tx, ty)), shape)
            else
              binary_search(((fx, fy), (mx, my)), shape)
          }
        }
      }

      intersecting_line(path, shape) match {
        case None => None
        case Some(line) => binary_search(line, shape)
      }
    }

    def paint(g: Graphics2D, path: GeneralPath, shape: Shape)
    {
      position(path, shape) match {
        case None =>
        case Some(at) =>
          val arrow = new GeneralPath(Path2D.WIND_EVEN_ODD, 3)
          arrow.moveTo(0, 0)
          arrow.lineTo(-10, 4)
          arrow.lineTo(-6, 0)
          arrow.lineTo(-10, -4)
          arrow.lineTo(0, 0)
          arrow.transform(at)

          g.fill(arrow)
      }
    }
  }
}