Search in sources :

Example 1 with NCrosspoint

use of com.ramussoft.pb.data.negine.NCrosspoint in project ramus by Vitaliy-Yakovchuk.

the class PaintSector method paint.

/**
 * Малює сектор, використовуючи параметри movingArea.
 *
 * @param g          Об’єкт для малювання.
 * @param movingArea Об’єкт для завантаження параметрів.
 */
public void paint(final Graphics2D g, final MovingArea movingArea) {
    g.setColor(getColor());
    g.setFont(getFont());
    arrowPainter = new ArrowPainter(movingArea);
    if (movingArea.getMousePin() != null && movingArea.getMousePin().getSector() == this && !selStart && !selEnd || isSelected(movingArea))
        g.setStroke(getBoldStroke());
    else {
        Stroke stroke = getStroke();
        if (stroke instanceof WayStroke) {
            final float arrowWidth = (float) movingArea.getIDoubleOrdinate(ArrowPainter.ARROW_WIDTH);
            WayStroke wayStroke = (WayStroke) stroke;
            if (wayStroke.getType() == 0)
                wayStroke.setArrowWidth(arrowWidth);
            else if (wayStroke.getType() == 1)
                wayStroke.setArrowWidth(arrowWidth / 2);
            else
                wayStroke.setArrowWidth(arrowWidth / 3);
        } else if (stroke instanceof ArrowedStroke) {
            final float arrowWidth = (float) movingArea.getIDoubleOrdinate(ArrowPainter.ARROW_WIDTH);
            final float arrowHeight = (float) movingArea.getIDoubleOrdinate(ArrowPainter.ARROW_HEIGHT);
            g.setStroke(new ArrowedStroke(arrowWidth, arrowHeight));
            ArrowedStroke arrowedStroke = (ArrowedStroke) stroke;
            if (arrowedStroke.getType() == 0) {
                arrowedStroke.setArrowWidth(arrowWidth);
                arrowedStroke.setArrowHeight(arrowHeight);
            } else if (arrowedStroke.getType() == 1) {
                arrowedStroke.setArrowWidth(arrowWidth / 2);
                arrowedStroke.setArrowHeight(arrowHeight / 2);
            } else {
                arrowedStroke.setArrowWidth(arrowWidth / 3);
                arrowedStroke.setArrowHeight(arrowHeight / 3);
            }
        }
        g.setStroke(stroke);
    }
    for (int i = 0; i < getPinCount(); i++) getPin(i).paint(g, movingArea);
    if (showTilda && text != null)
        arrowPainter.paintTilda(g, this);
    switch(getStartTunnelType()) {
        case Crosspoint.TUNNEL_SIMPLE_SOFT:
        case Crosspoint.TUNNEL_SOFT:
            {
                arrowPainter.paintTunnel(g, getStartPoint().getPoint(), getVectorType(SectorRefactor.TYPE_START), true);
            }
            break;
        case Crosspoint.TUNNEL_HARD:
            {
                arrowPainter.paintTunnel(g, getStartPoint().getPoint(), getVectorType(SectorRefactor.TYPE_START), false);
            }
            break;
        case Crosspoint.TUNNEL_NONE:
            {
                int borderType = getSector().getStart().getBorderType();
                NCrosspoint crosspoint = (NCrosspoint) getStart();
                if ((borderType >= 0) && (crosspoint != null) && (crosspoint.isOneInOut())) {
                    NSector in = (NSector) crosspoint.getIn();
                    Function outer = in.getFunction();
                    NSector out = (NSector) crosspoint.getOut();
                    Function inner = out.getFunction();
                    if ((inner != null) && (inner.getParent() != null) && (!inner.getParent().equals(outer))) {
                        arrowPainter.paintLink(g, getStartPoint().getPoint(), getVectorType(SectorRefactor.TYPE_START), inner, outer);
                    }
                }
            }
            break;
    }
    switch(getEndTunnelType()) {
        case Crosspoint.TUNNEL_SIMPLE_SOFT:
        case Crosspoint.TUNNEL_SOFT:
            {
                arrowPainter.paintTunnel(g, getEndPoint().getPoint(), getVectorType(SectorRefactor.TYPE_END), true);
            }
            break;
        case Crosspoint.TUNNEL_HARD:
            {
                arrowPainter.paintTunnel(g, getEndPoint().getPoint(), getVectorType(SectorRefactor.TYPE_END), false);
            }
            break;
        case Crosspoint.TUNNEL_NONE:
            {
                int borderType = getSector().getEnd().getBorderType();
                NCrosspoint crosspoint = (NCrosspoint) getEnd();
                if ((borderType >= 0) && (crosspoint != null) && (crosspoint.isOneInOut())) {
                    Function outer = crosspoint.getOut().getFunction();
                    Function inner = crosspoint.getIn().getFunction();
                    if ((inner != null) && (inner.getParent() != null) && (!inner.getParent().equals(outer))) {
                        arrowPainter.paintLink(g, getEndPoint().getPoint(), getVectorType(SectorRefactor.TYPE_END), inner, outer);
                    }
                }
            }
            break;
    }
}
Also used : Function(com.ramussoft.pb.Function) MovingFunction(com.ramussoft.pb.idef.visual.MovingFunction) WayStroke(com.ramussoft.pb.idef.visual.WayStroke) Stroke(java.awt.Stroke) ArrowedStroke(com.ramussoft.pb.idef.visual.ArrowedStroke) BasicStroke(java.awt.BasicStroke) NSector(com.ramussoft.pb.data.negine.NSector) NCrosspoint(com.ramussoft.pb.data.negine.NCrosspoint) WayStroke(com.ramussoft.pb.idef.visual.WayStroke) NCrosspoint(com.ramussoft.pb.data.negine.NCrosspoint) Crosspoint(com.ramussoft.pb.Crosspoint) FloatPoint(com.dsoft.pb.types.FloatPoint) ArrowedStroke(com.ramussoft.pb.idef.visual.ArrowedStroke)

Aggregations

FloatPoint (com.dsoft.pb.types.FloatPoint)1 Crosspoint (com.ramussoft.pb.Crosspoint)1 Function (com.ramussoft.pb.Function)1 NCrosspoint (com.ramussoft.pb.data.negine.NCrosspoint)1 NSector (com.ramussoft.pb.data.negine.NSector)1 ArrowedStroke (com.ramussoft.pb.idef.visual.ArrowedStroke)1 MovingFunction (com.ramussoft.pb.idef.visual.MovingFunction)1 WayStroke (com.ramussoft.pb.idef.visual.WayStroke)1 BasicStroke (java.awt.BasicStroke)1 Stroke (java.awt.Stroke)1