annotate java/src/uk/ac/qmul/eecs/ccmi/simpletemplate/RectangularNode.java @ 8:ea7885bd9bff tip

fixed bug : render solid line as dotted/dashed when moving the stylus from dotted/dashed to solid
author ccmi-guest
date Thu, 03 Jul 2014 16:12:20 +0100
parents 9418ab7b7f3f
children
rev   line source
fiore@0 1 /*
fiore@0 2 CCmI Editor - A Collaborative Cross-Modal Diagram Editing Tool
fiore@0 3
fiore@0 4 Copyright (C) 2002 Cay S. Horstmann (http://horstmann.com)
fiore@0 5 Copyright (C) 2011 Queen Mary University of London (http://ccmi.eecs.qmul.ac.uk/)
fiore@0 6
fiore@0 7 This program is free software: you can redistribute it and/or modify
fiore@0 8 it under the terms of the GNU General Public License as published by
fiore@0 9 the Free Software Foundation, either version 3 of the License, or
fiore@0 10 (at your option) any later version.
fiore@0 11
fiore@0 12 This program is distributed in the hope that it will be useful,
fiore@0 13 but WITHOUT ANY WARRANTY; without even the implied warranty of
fiore@0 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fiore@0 15 GNU General Public License for more details.
fiore@0 16
fiore@0 17 You should have received a copy of the GNU General Public License
fiore@0 18 along with this program. If not, see <http://www.gnu.org/licenses/>.
fiore@0 19 */
fiore@0 20
fiore@0 21 package uk.ac.qmul.eecs.ccmi.simpletemplate;
fiore@0 22
fiore@0 23 import java.awt.Shape;
fiore@0 24 import java.awt.geom.Point2D;
fiore@0 25 import java.awt.geom.Rectangle2D;
fiore@0 26 import java.io.IOException;
fiore@0 27 import java.io.InputStream;
fiore@0 28 import java.util.List;
fiore@0 29
fiore@0 30 import org.w3c.dom.Document;
fiore@0 31 import org.w3c.dom.Element;
fiore@0 32
fiore@0 33 import uk.ac.qmul.eecs.ccmi.diagrammodel.NodeProperties;
fiore@0 34 import uk.ac.qmul.eecs.ccmi.gui.Direction;
fiore@0 35 import uk.ac.qmul.eecs.ccmi.sound.SoundFactory;
fiore@0 36
fiore@0 37 /**
fiore@0 38 A rectangular shaped diagram node.
fiore@0 39 */
fiore@0 40 @SuppressWarnings("serial")
fiore@0 41 public class RectangularNode extends SimpleShapeNode{
fiore@0 42
fiore@0 43 public RectangularNode(String nodeType, NodeProperties properties){
fiore@0 44 super(nodeType, properties);
fiore@0 45 bounds = dataDisplayBounds;
fiore@0 46 }
fiore@0 47
fiore@0 48 @Override
fiore@0 49 public ShapeType getShapeType() {
fiore@0 50 return ShapeType.Rectangle;
fiore@0 51 }
fiore@0 52
fiore@0 53 @Override
fiore@0 54 protected void translateImplementation(Point2D p, double dx, double dy){
fiore@0 55 /* if we clicked on a property node, just move that one */
fiore@0 56 for(List<PropertyNode> pnList : propertyNodesMap.values())
fiore@0 57 for(PropertyNode pn : pnList)
fiore@0 58 if(pn.contains(p)){
fiore@0 59 pn.translate(dx, dy);
fiore@0 60 return;
fiore@0 61 }
fiore@0 62
fiore@0 63 bounds.setFrame(bounds.getX() + dx,
fiore@0 64 bounds.getY() + dy,
fiore@0 65 bounds.getWidth(),
fiore@0 66 bounds.getHeight());
fiore@0 67 super.translateImplementation(p, dx, dy);
fiore@0 68 }
fiore@0 69
fiore@0 70 @Override
fiore@0 71 protected void reshapeInnerProperties(List<String> insidePropertyTypes){
fiore@0 72 super.reshapeInnerProperties(insidePropertyTypes);
fiore@0 73 bounds.setFrame(dataDisplayBounds);
fiore@0 74 }
fiore@0 75
fiore@0 76 @Override
fiore@0 77 public void decode(Document doc, Element nodeTag) throws IOException{
fiore@0 78 super.decode(doc, nodeTag);
fiore@0 79 bounds.setFrame(dataDisplayBounds);
fiore@0 80 }
fiore@0 81
fiore@0 82 @Override
fiore@0 83 public Rectangle2D getBounds(){
fiore@0 84 return (Rectangle2D)bounds.clone();
fiore@0 85 }
fiore@0 86
fiore@0 87 @Override
fiore@0 88 public Point2D getConnectionPoint(Direction d){
fiore@0 89 return calculateConnectionPoint(d, getBounds());
fiore@0 90 }
fiore@0 91
fiore@0 92 public static Point2D calculateConnectionPoint(Direction d, Rectangle2D bounds){
fiore@0 93 double slope = bounds.getHeight() / bounds.getWidth();
fiore@0 94 double ex = d.getX();
fiore@0 95 double ey = d.getY();
fiore@0 96 double x = bounds.getCenterX();
fiore@0 97 double y = bounds.getCenterY();
fiore@0 98
fiore@0 99 if (ex != 0 && -slope <= ey / ex && ey / ex <= slope){
fiore@0 100 // intersects at left or right boundary
fiore@0 101 if (ex > 0){
fiore@0 102 x = bounds.getMaxX();
fiore@0 103 y += (bounds.getWidth() / 2) * ey / ex;
fiore@0 104 }else{
fiore@0 105 x = bounds.getX();
fiore@0 106 y -= (bounds.getWidth() / 2) * ey / ex;
fiore@0 107 }
fiore@0 108 }else if (ey != 0){
fiore@0 109 // intersects at top or bottom
fiore@0 110 if (ey > 0){
fiore@0 111 x += (bounds.getHeight() / 2) * ex / ey;
fiore@0 112 y = bounds.getMaxY();
fiore@0 113 }else{
fiore@0 114 x -= (bounds.getHeight() / 2) * ex / ey;
fiore@0 115 y = bounds.getY();
fiore@0 116 }
fiore@0 117 }
fiore@0 118 return new Point2D.Double(x, y);
fiore@0 119 }
fiore@0 120
fiore@0 121 public Shape getShape(){
fiore@0 122 return bounds;
fiore@0 123 }
fiore@0 124
fiore@0 125 @Override
fiore@0 126 public InputStream getSound(){
fiore@0 127 return sound;
fiore@0 128 }
fiore@0 129
fiore@0 130 public Object clone(){
fiore@0 131 RectangularNode cloned = (RectangularNode)super.clone();
fiore@0 132 cloned.bounds = (Rectangle2D.Double)bounds.clone();
fiore@0 133 return cloned;
fiore@0 134 }
fiore@0 135
fiore@0 136 private Rectangle2D.Double bounds;
fiore@0 137 private static InputStream sound;
fiore@0 138
fiore@0 139 static{
fiore@0 140 sound = RectangularNode.class.getResourceAsStream("audio/Rectangle.mp3");
fiore@0 141 SoundFactory.getInstance().loadSound(sound);
fiore@0 142 }
fiore@0 143 }