Package org.locationtech.udig.tools.edit.validator

Source Code of org.locationtech.udig.tools.edit.validator.ValidHoleValidator

/* uDig - User Friendly Desktop Internet GIS client
* http://udig.refractions.net
* (C) 2004, Refractions Research Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Refractions BSD
* License v1.0 (http://udig.refractions.net/files/bsd3-v10.html).
*/
package org.locationtech.udig.tools.edit.validator;

import org.locationtech.udig.project.ui.render.displayAdapter.MapMouseEvent;
import org.locationtech.udig.tool.edit.internal.Messages;
import org.locationtech.udig.tools.edit.EditToolHandler;
import org.locationtech.udig.tools.edit.EventType;
import org.locationtech.udig.tools.edit.behaviour.IEditValidator;
import org.locationtech.udig.tools.edit.support.EditUtils;
import org.locationtech.udig.tools.edit.support.Point;
import org.locationtech.udig.tools.edit.support.PrimitiveShape;

/**
* Returns true if:
* <ul>
* <li>The new vertex does not cause a self intersect</li>
* <li>The new vertex does not the hole to intersect with another hole</li>
* <li>The new event is within the shell</li>
* </ul>
* @author Jesse
* @since 1.1.0
*/
public class ValidHoleValidator implements IEditValidator {

    public String isValid( EditToolHandler handler, MapMouseEvent event, EventType type ) {
        PrimitiveShape shell = handler.getCurrentGeom().getShell();
        PrimitiveShape hole = handler.getCurrentShape();

        assert hole!=shell;
       
        // check the new edge (that will be created by event) to see if it intersect with the
        // rest of the hole
       
        Point newPoint = Point.valueOf(event.x, event.y);
        int lastPointIndex = hole.getNumPoints()-1;
        if( hole.getNumPoints()>2 && EditUtils.instance.intersection(hole.getPoint(lastPointIndex), newPoint, hole, 0, lastPointIndex) ){
            return Messages.ValidHoleValidator_selfIntersection;
        }
        if( !shell.contains(newPoint, true) )
            return Messages.ValidHoleValidator_outsideShell;
       
        for( PrimitiveShape hole2 : shell.getEditGeom().getHoles() ) {
            if( hole!=hole2 && hole2.contains(newPoint, true) )
                return Messages.ValidHoleValidator_holeOverlap;
        }
       
        return null;
    }

}
TOP

Related Classes of org.locationtech.udig.tools.edit.validator.ValidHoleValidator

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.