blob: 020cd0f7493be4af17a45c8099218b46a99c17a8 [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
*
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.core.environment.earth.surface.orbit.ui.jme3.adapters;
import org.eclipse.apogy.common.topology.Node;
import org.eclipse.apogy.common.topology.ui.jme3.JME3Adapter;
import org.eclipse.apogy.common.topology.ui.jme3.JME3RenderEngineDelegate;
import org.eclipse.apogy.common.topology.ui.jme3.JME3SceneObject;
import org.eclipse.apogy.core.environment.earth.surface.orbit.ui.EarthOrbitingSpacecraftLocationToolNode;
import org.eclipse.apogy.core.environment.earth.surface.orbit.ui.jme3.scene_objects.EarthOrbitingSpacecraftLocationToolJME3Object;
public class EarthOrbitingSpacecraftLocationToolNodeJME3Adapter implements JME3Adapter {
@Override
public boolean isAdapterFor(Node obj) {
return obj instanceof EarthOrbitingSpacecraftLocationToolNode;
}
@Override
public JME3SceneObject getAdapter(Node obj, Object context) {
JME3SceneObject sceneObject = null;
if (isAdapterFor(obj)) {
// Context should be an Application
if (!(context instanceof JME3RenderEngineDelegate)) {
throw new IllegalArgumentException("Context must be a JME3RenderEngineDelegate.");
}
sceneObject = new EarthOrbitingSpacecraftLocationToolJME3Object(
(EarthOrbitingSpacecraftLocationToolNode) obj, (JME3RenderEngineDelegate) context);
}
return sceneObject;
}
@Override
public Class<?> getAdaptedClass() {
return EarthOrbitingSpacecraftLocationToolNode.class;
}
}