Package org.openscience.jchempaint.renderer.generators

Source Code of org.openscience.jchempaint.renderer.generators.MappingGenerator

/* Copyright (C) 2009  Gilleain Torrance <gilleain@users.sf.net>
*               2009  Stefan Kuhn <sh3@users.sf.net>
*
* Contact: cdk-devel@list.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*/
package org.openscience.jchempaint.renderer.generators;

import java.awt.Color;

import javax.vecmath.Point2d;

import org.openscience.cdk.interfaces.IAtom;
import org.openscience.cdk.interfaces.IMapping;
import org.openscience.cdk.interfaces.IReaction;
import org.openscience.jchempaint.renderer.JChemPaintRendererModel;
import org.openscience.cdk.renderer.elements.ElementGroup;
import org.openscience.cdk.renderer.elements.IRenderingElement;
import org.openscience.cdk.renderer.elements.LineElement;

/**
* @cdk.module renderextra
*/
public class MappingGenerator implements IReactionGenerator {

    public MappingGenerator() {}

    public IRenderingElement generate(IReaction reaction, JChemPaintRendererModel model) {
    if(!model.getShowAtomAtomMapping())
      return null;
        ElementGroup elementGroup = new ElementGroup();
        Color mappingColor = model.getAtomAtomMappingLineColor();
        for (IMapping mapping : reaction.mappings()) {
            // XXX assume that there are only 2 endpoints!
            // XXX assume that the ChemObjects are actually IAtoms...
            IAtom endPointA = (IAtom) mapping.getChemObject(0);
            IAtom endPointB = (IAtom) mapping.getChemObject(1);
            Point2d pA = endPointA.getPoint2d();
            Point2d pB = endPointB.getPoint2d();
            elementGroup.add(
                    new LineElement(pA.x, pA.y, pB.x, pB.y, getWidthForMappingLine(model), mappingColor));
        }
        return elementGroup;
    }
   
  /**
   * Determine the width of an atom atom mapping, returning the width defined
   * in the model. Note that this will be scaled
   * to the space of the model.
   *
   * @param model the renderer model
   * @return a double in chem-model space
   */
  public double getWidthForMappingLine(JChemPaintRendererModel model) {
    double scale = model.getScale();
    return model.getMappingLineWidth() / scale;
  }
}
TOP

Related Classes of org.openscience.jchempaint.renderer.generators.MappingGenerator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.