Package org.jdesktop.wonderland.modules.jmecolladaloader.client.cell

Source Code of org.jdesktop.wonderland.modules.jmecolladaloader.client.cell.JmeColladaCellComponent

/**
* Project Wonderland
*
* Copyright (c) 2004-2009, Sun Microsystems, Inc., All Rights Reserved
*
* Redistributions in source code form must reproduce the above
* copyright and this condition.
*
* The contents of this file are subject to the GNU General Public
* License, Version 2 (the "License"); you may not use this file
* except in compliance with the License. A copy of the License is
* available at http://www.opensource.org/licenses/gpl-license.php.
*
* Sun designates this particular file as subject to the "Classpath"
* exception as provided by Sun in the License file that accompanied
* this code.
*/

package org.jdesktop.wonderland.modules.jmecolladaloader.client.cell;

import org.jdesktop.wonderland.client.cell.Cell;
import org.jdesktop.wonderland.client.cell.Cell.RendererType;
import org.jdesktop.wonderland.client.cell.CellRenderer;
import org.jdesktop.wonderland.client.cell.ModelCellComponent;
import org.jdesktop.wonderland.client.jme.artimport.DeployedModel;
import org.jdesktop.wonderland.client.jme.cellrenderer.ModelRenderer;
import org.jdesktop.wonderland.common.cell.ComponentLookupClass;
import org.jdesktop.wonderland.common.cell.state.CellComponentClientState;
import org.jdesktop.wonderland.modules.jmecolladaloader.client.JmeColladaLoader;
import org.jdesktop.wonderland.modules.jmecolladaloader.common.cell.state.JmeColladaCellComponentClientState;

/**
*
* @author paulby
* @deprecated made obsolete by .dep deployment files
*/
@ComponentLookupClass(ModelCellComponent.class)
public class JmeColladaCellComponent extends ModelCellComponent {

    public JmeColladaCellComponent(Cell cell) {
        super(cell);
    }

    @Override
    public void setClientState(CellComponentClientState clientState) {
        super.setClientState(clientState);

        JmeColladaCellComponentClientState jmeState = (JmeColladaCellComponentClientState) clientState;
        setDeployedModelURL(jmeState.getDeployedModelURL());

        if (jmeState.getDeployedModelURL()==null// Legacy support
            deployedModel = getDeployedModel(jmeState);
    }

    private DeployedModel getDeployedModel(JmeColladaCellComponentClientState state) {
        DeployedModel ret = new DeployedModel(state.getModelLoaderClassname());
        ret.setModelURL(state.getModelURI());
        ret.setModelRotation(state.getModelRotation());
        ret.setModelScale(state.getModelScale());
        ret.setModelTranslation(state.getModelTranslation());

        return ret;
    }

    @Override
    public CellRenderer getCellRenderer(RendererType type, Cell cell) {
        if (type.equals(RendererType.RENDERER_JME))
            return new ModelRenderer(cell, this);
        return null;
    }

}
TOP

Related Classes of org.jdesktop.wonderland.modules.jmecolladaloader.client.cell.JmeColladaCellComponent

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.