blob: 9f8ee9192538405ceb58aac33f7c95cc83cf5858 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Pierre Allard - initial API and implementation
* Regent L'Archeveque
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.addons.geometry.paths;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.eclipse.apogy.common.geometry.data3d.ApogyCommonGeometryData3DFacade;
import org.eclipse.apogy.common.geometry.data3d.CartesianPositionCoordinates;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.impl.AdapterImpl;
public class WayPointPathBinding {
private Adapter adapter = null;
private final Map<CartesianPositionCoordinates, CartesianPositionCoordinates> originalToCopy = new HashMap<CartesianPositionCoordinates, CartesianPositionCoordinates>();
private WayPointPath sourceWayPointPath = null;
private WayPointPath targetWayPointPath = null;
public WayPointPathBinding(WayPointPath sourceWayPointPath, WayPointPath targetWayPointPath) {
// Do this first !
setTargetWayPointPath(targetWayPointPath);
setSourceWayPointPath(sourceWayPointPath);
}
public WayPointPath getSourceWayPointPath() {
return this.sourceWayPointPath;
}
public void setSourceWayPointPath(WayPointPath newSourceWayPointPath) {
// Remove listener from previous source path.
if (this.sourceWayPointPath != null) {
this.sourceWayPointPath.eAdapters().remove(getAdapter());
}
// Clear target path.
if (this.targetWayPointPath != null)
this.targetWayPointPath.getPoints().clear();
// Clears map
this.originalToCopy.clear();
this.sourceWayPointPath = newSourceWayPointPath;
// Adds listener to new source path.
if (newSourceWayPointPath != null) {
// Adds the point currenlty in the source path to the target path.
if (this.targetWayPointPath != null) {
addPoints(newSourceWayPointPath.getPoints());
}
newSourceWayPointPath.eAdapters().add(getAdapter());
}
}
public WayPointPath getTargetWayPointPath() {
return this.targetWayPointPath;
}
public void setTargetWayPointPath(WayPointPath targetWayPointPath) {
this.targetWayPointPath = targetWayPointPath;
}
protected void addPoint(CartesianPositionCoordinates point) {
if (getTargetWayPointPath() != null) {
// First, copy the original point
CartesianPositionCoordinates pointCopy = ApogyCommonGeometryData3DFacade.INSTANCE
.createCartesianPositionCoordinates(point);
// Adds the point to the target path.
getTargetWayPointPath().getPoints().add(pointCopy);
// Adds the point to the map.
this.originalToCopy.put(point, pointCopy);
}
}
protected void addPoints(List<CartesianPositionCoordinates> points) {
if (getTargetWayPointPath() != null) {
List<CartesianPositionCoordinates> pointsCopy = new ArrayList<CartesianPositionCoordinates>();
for (CartesianPositionCoordinates point : points) {
// First, copy the original point
CartesianPositionCoordinates pointCopy = ApogyCommonGeometryData3DFacade.INSTANCE
.createCartesianPositionCoordinates(point);
// Adds point to temporary list.
pointsCopy.add(pointCopy);
// Adds the point to the map.
this.originalToCopy.put(point, pointCopy);
}
// Adds the point to the target path.
getTargetWayPointPath().getPoints().addAll(pointsCopy);
}
}
protected void removePoint(CartesianPositionCoordinates point) {
if (getTargetWayPointPath() != null) {
CartesianPositionCoordinates pointCopy = this.originalToCopy.get(point);
if (pointCopy != null) {
getTargetWayPointPath().getPoints().remove(pointCopy);
this.originalToCopy.remove(point);
}
}
}
protected void removePoints(List<CartesianPositionCoordinates> points) {
if (getTargetWayPointPath() != null) {
for (CartesianPositionCoordinates point : points) {
CartesianPositionCoordinates pointCopy = this.originalToCopy.get(point);
if (pointCopy != null) {
getTargetWayPointPath().getPoints().remove(pointCopy);
this.originalToCopy.remove(point);
}
}
}
}
protected Adapter getAdapter() {
if (this.adapter == null) {
this.adapter = new AdapterImpl() {
@SuppressWarnings("unchecked")
@Override
public void notifyChanged(Notification msg) {
if (msg.getNotifier() instanceof WayPointPath) {
int featureId = msg.getFeatureID(WayPointPath.class);
switch (featureId) {
case ApogyAddonsGeometryPathsPackage.WAY_POINT_PATH__POINTS:
int eventType = msg.getEventType();
switch (eventType) {
case Notification.ADD:
CartesianPositionCoordinates pointAdded = (CartesianPositionCoordinates) msg
.getNewValue();
addPoint(pointAdded);
break;
case Notification.ADD_MANY:
List<CartesianPositionCoordinates> pointsAdded = (List<CartesianPositionCoordinates>) msg
.getNewValue();
addPoints(pointsAdded);
break;
case Notification.REMOVE:
CartesianPositionCoordinates pointRemoved = (CartesianPositionCoordinates) msg
.getOldValue();
removePoint(pointRemoved);
break;
case Notification.REMOVE_MANY:
List<CartesianPositionCoordinates> pointsRemoved = (List<CartesianPositionCoordinates>) msg
.getOldValue();
removePoints(pointsRemoved);
break;
}
break;
default:
break;
}
}
}
};
}
return this.adapter;
}
}