]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling/src/org/simantics/modeling/SCLScenegraph.java
Disable SCL Issue provider by default
[simantics/platform.git] / bundles / org.simantics.modeling / src / org / simantics / modeling / SCLScenegraph.java
index 559469d4a21ce908aff65f9574355363a989d2f3..cc4489f8230812b15badd4287bae73582c47421d 100644 (file)
@@ -31,6 +31,8 @@ import javax.xml.transform.stream.StreamResult;
 import org.apache.batik.dom.GenericDOMImplementation;
 import org.apache.batik.svggen.SVGGeneratorContext;
 import org.apache.batik.svggen.SVGGraphics2D;
+import org.apache.batik.svggen.SVGIDGenerator;
+import org.eclipse.swt.SWT;
 import org.simantics.Simantics;
 import org.simantics.datatypes.literal.GUID;
 import org.simantics.db.ReadGraph;
@@ -46,6 +48,7 @@ import org.simantics.diagram.elements.DiagramNodeUtil;
 import org.simantics.diagram.elements.TextGridNode;
 import org.simantics.diagram.elements.TextNode;
 import org.simantics.diagram.stubs.DiagramResource;
+import org.simantics.diagram.ui.DiagramModelHints;
 import org.simantics.g2d.canvas.Hints;
 import org.simantics.g2d.canvas.ICanvasContext;
 import org.simantics.g2d.diagram.DiagramHints;
@@ -399,6 +402,22 @@ public class SCLScenegraph {
                return true;
     }
 
+    
+    static class UniqueIDGenerator extends SVGIDGenerator{
+       
+       String overallId;
+       public UniqueIDGenerator(String overallId) {
+               super();
+               this.overallId = overallId;
+       }
+       
+       @Override
+       public String generateID(String prefix) {
+               return super.generateID(overallId+prefix);
+       }
+
+    }
+
        static class Generator extends SVGGraphics2D {
 
                int elemLevel = 0;
@@ -412,9 +431,14 @@ public class SCLScenegraph {
                }
 
                public Generator(Document document) {
+                       this(document,null);
+               }
+               public Generator(Document document, String id) {
                        super(document);
                        // prevent batik comment in each g-element
                        getGeneratorContext().setComment(null);
+                       if (id != null)
+                               getGeneratorContext().setIDGenerator(new UniqueIDGenerator(id));
                }
 
                @Override
@@ -514,7 +538,7 @@ public class SCLScenegraph {
        }
 
        public static String renderSVG3(ICanvasContext ctx, double width, double height) {
-        return renderSVG0(width, height, ctx, p0 -> p0.stream().collect(Collectors.toMap(p1 -> p1, p2 -> p2)));
+        return renderSVG0(width, height, SWT.LEFT, SWT.TOP, ctx, p0 -> p0.stream().collect(Collectors.toMap(p1 -> p1, p2 -> p2)));
        }
 
     /**
@@ -536,12 +560,26 @@ public class SCLScenegraph {
      */
     private static final Function1<Set<?>, Map<?, ?>> mapper = p0 -> p0.stream().collect(Collectors.toMap(p1 -> p1, p2 -> p2));
 
+    
+    /**
+     * Renders CanvasContext to SVG.
+     * @param ctx
+     * @param width Width of output image. Use -1 for autosize.
+     * @param height Height of output image. Use -1 for autosize.
+     * @param ax horizontal alignment. SWT.LEFT SWT.CENTER SWT.RIGHT are accepted values. Value is not used with autosize. 
+     * @param ay vertical alignment. SWT.TOP SWT.CENTER SWT.BOTTOM are accepted values. Value is not used with autosize.
+     * @return
+     */
+    public static String renderSVG(ICanvasContext ctx, double width, double height, int ax, int ay) {
+        return renderSVG0(width, height, ax, ay, ctx, mapper);
+    }
+    
     public static String renderSVG(ICanvasContext ctx, double width, double height) {
-        return renderSVG0(width, height, ctx, mapper);
+        return renderSVG(ctx,width,height, SWT.LEFT, SWT.TOP);
     }
 
     public static String renderSVG(ICanvasContext ctx) {
-       return renderSVG(ctx, -1, -1);
+       return renderSVG(ctx, -1, -1, SWT.LEFT, SWT.TOP);
     }
 
     public static String renderSVGMapIdentifiers(ICanvasContext ctx) {
@@ -556,7 +594,7 @@ public class SCLScenegraph {
      * @return
      */
     public static String renderSVGMapIdentifiers(ICanvasContext ctx, double width, double height) {
-        return renderSVG0(width, height, ctx, new Function1<Set<?>, Map<?, ?>>() {
+        return renderSVG0(width, height, SWT.LEFT, SWT.TOP, ctx, new Function1<Set<?>, Map<?, ?>>() {
 
             @Override
             public Map<?, ?> apply(Set<?> p0) {
@@ -640,7 +678,9 @@ public class SCLScenegraph {
        
     }
     
-       private static String renderSVG0(double width, double height, ICanvasContext ctx, Function1<Set<?>, Map<?, ?>> mappingFunction) {
+    
+    
+       private static String renderSVG0(double width, double height, int ax, int ay, ICanvasContext ctx, Function1<Set<?>, Map<?, ?>> mappingFunction) {
 
                // Get a DOMImplementation.
                DOMImplementation domImpl = GenericDOMImplementation.getDOMImplementation();
@@ -650,7 +690,13 @@ public class SCLScenegraph {
                Document document = domImpl.createDocument(svgNS, "svg", null);
 
                // Create an instance of the SVG Generator.
-               SVGGraphics2D svgGenerator = new Generator(document);
+               IDiagram d = ctx.getDefaultHintContext().getHint(DiagramHints.KEY_DIAGRAM);
+               Resource r = d.getHint(DiagramModelHints.KEY_DIAGRAM_RESOURCE);
+               SVGGraphics2D svgGenerator;
+               if (r != null)
+                       svgGenerator = new Generator(document,r.toString());
+               else
+                       svgGenerator = new Generator(document);
 
                RenderSVGContext result = new RenderSVGContext();
 
@@ -661,8 +707,7 @@ public class SCLScenegraph {
             if (selection != null) {
                 // This prevents workbench selection from being left over.
                 // Also prevents scene graph crap from being left on the screen.
-               IDiagram d = ctx.getDefaultHintContext().getHint(DiagramHints.KEY_DIAGRAM);
-                selection.setSelection(0, d.getElements());
+               selection.setSelection(0, d.getElements());
             }
 
                        G2DSceneGraph sg = ctx.getSceneGraph();
@@ -676,6 +721,10 @@ public class SCLScenegraph {
                        // get the bounds of the content
                        Rectangle2D content = rtreeBounds;
                        
+//                     int ax = SWT.LEFT;
+//                     int ay = SWT.TOP;
+//                     int ax = SWT.CENTER;
+//                     int ay = SWT.CENTER;
                        
                        if (content != null) {
                         // To account for dynamic padding of selection rectangles (5 units + stroke width)
@@ -686,7 +735,29 @@ public class SCLScenegraph {
                    AffineTransform tr = new AffineTransform();
                    tr.translate(offset, offset);
                    tr.scale(scale, scale);
-                           tr.translate(-content.getX(), -content.getY());
+                   double dx = -content.getX();
+                   double dy = -content.getY();
+                   if (width > 0.0 && height > 0.0) {
+                           if (ax == SWT.LEFT) {
+                               dx = -content.getX();
+                           } else if (ax == SWT.RIGHT) {
+                               double t = ((width - 2*offset)/scale - content.getWidth());
+                               dx = -content.getX() + t;
+                           } else {
+                               double t = ((width - 2*offset)/scale - content.getWidth()) *0.5;
+                               dx = -content.getX() + t;
+                           }
+                           if (ay == SWT.TOP) {
+                               dy = -content.getY();
+                           } else if (ay == SWT.BOTTOM) {
+                               double t = ((height - 2*offset)/scale - content.getHeight());
+                               dy = -content.getY() + t;
+                           } else {
+                               double t = ((height - 2*offset)/scale - content.getHeight()) * 0.5;
+                               dy = -content.getY() + t;
+                           }
+                   }
+                           tr.translate(dx, dy);
                            tr.getMatrix(matrix);
                            svgGenerator.setSVGCanvasSize(new Dimension((int)Math.ceil(scale * content.getWidth()) + 2*offset, (int)Math.ceil(scale * content.getHeight()) + 2*offset));
                        } else {
@@ -861,9 +932,8 @@ public class SCLScenegraph {
                 svg = printSVGDocument(doc);
                 parentBuilder.append(SELECTION_MASK_SECTION, svg);
 
-                parentBuilder.append(SELECTION_MASK_SECTION, "\n</g>");
-                parentBuilder.append(SELECTION_SECTION, "\n</g>");
-                parentBuilder.append(MAIN_SECTION, "\n</g>");
+                senBuilders.put((ConnectionNode)node, new RenderSVGContext());
+                
                 
             } else if (isSelection0(node)) {
                 
@@ -1067,8 +1137,32 @@ public class SCLScenegraph {
         @Override
         public void leave(IG2DNode node) {
 
-            if(node instanceof ConnectionNode || node instanceof SVGNode) {
+            if( node instanceof SVGNode) {
                 // We are done
+            } else if (node instanceof ConnectionNode) {
+               RenderSVGContext parentBuilder = getParentBuilder(node);
+               SingleElementNode sen = (SingleElementNode)node;
+               RenderSVGContext b = senBuilders.get(sen);
+               String content = b.get(MAIN_SECTION);
+               if(content.isEmpty()) {
+//                     Handling connection the same way as SingleElementNode would draw connection twice..
+//                     if(sen.getKey() != null) {
+//
+//                             for(SelectionNode n : NodeUtil.collectNodes(node, SelectionNode.class)) {
+//                                     n.setIgnore(true);
+//                             }
+//
+//                             Element doc = renderSVGNode(svgGenerator, (IG2DNode)node);
+//                             String svg = printSVGDocument(doc);
+//                             parentBuilder.append(MAIN_SECTION, svg);
+//                     }
+               } else {
+                       parentBuilder.append(b);
+               }
+               parentBuilder.append(SELECTION_MASK_SECTION, "\n</g>");
+                parentBuilder.append(SELECTION_SECTION, "\n</g>");
+                parentBuilder.append(MAIN_SECTION, "\n</g>");
+                
             } else if (node instanceof G2DParentNode) {
                 
                RenderSVGContext parentBuilder = getParentBuilder(node);