- refactored DSS preview to make it generic git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8014 75d07b2b-3a1a-0410-a2c5-0572b91ccdca3.0
parent
773f35131d
commit
e89d38df6f
@ -1,8 +1,8 @@ |
||||
Manifest-Version: 1.0 |
||||
OpenIDE-Module: com.jme3.gde.core/1 |
||||
OpenIDE-Module-Implementation-Version: 0 |
||||
OpenIDE-Module-Install: com/jme3/gde/core/Installer.class |
||||
OpenIDE-Module-Layer: com/jme3/gde/core/layer.xml |
||||
OpenIDE-Module-Localizing-Bundle: com/jme3/gde/core/Bundle.properties |
||||
OpenIDE-Module-Requires: org.netbeans.api.javahelp.Help, org.openide.windows.WindowManager |
||||
|
||||
Manifest-Version: 1.0 |
||||
OpenIDE-Module: com.jme3.gde.core/1 |
||||
OpenIDE-Module-Implementation-Version: 0 |
||||
OpenIDE-Module-Install: com/jme3/gde/core/Installer.class |
||||
OpenIDE-Module-Layer: com/jme3/gde/core/layer.xml |
||||
OpenIDE-Module-Localizing-Bundle: com/jme3/gde/core/Bundle.properties |
||||
OpenIDE-Module-Requires: org.netbeans.api.javahelp.Help, org.openide.windows.WindowManager |
||||
|
||||
|
@ -0,0 +1,139 @@ |
||||
/* |
||||
* Copyright (c) 2009-2010 jMonkeyEngine |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* |
||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
||||
* may be used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package com.jme3.gde.core.properties.preview; |
||||
|
||||
import com.jme3.asset.TextureKey; |
||||
import com.jme3.gde.core.assets.ProjectAssetManager; |
||||
import com.jme3.gde.core.scene.PreviewRequest; |
||||
import com.jme3.gde.core.scene.SceneApplication; |
||||
import com.jme3.gde.core.scene.SceneListener; |
||||
import com.jme3.gde.core.scene.SceneRequest; |
||||
import com.jme3.material.Material; |
||||
import com.jme3.math.Vector2f; |
||||
import com.jme3.math.Vector3f; |
||||
import com.jme3.scene.Geometry; |
||||
import com.jme3.scene.Spatial; |
||||
import com.jme3.scene.shape.Quad; |
||||
import com.jme3.texture.Texture; |
||||
import com.jme3.util.SkyFactory; |
||||
import javax.swing.ImageIcon; |
||||
import javax.swing.JLabel; |
||||
|
||||
/** |
||||
* |
||||
* @author Nehon |
||||
*/ |
||||
public class DDSPreview implements SceneListener { |
||||
|
||||
private ProjectAssetManager assetManager; |
||||
private JLabel picPreview; |
||||
private Geometry quad; |
||||
private Geometry quad3D; |
||||
private Material material; |
||||
private Material material3D; |
||||
|
||||
public DDSPreview(ProjectAssetManager assetManager) { |
||||
this.assetManager = assetManager; |
||||
|
||||
Quad quadMesh = new Quad(4.5f, 4.5f); |
||||
Quad quadMesh3D = new Quad(4.5f, 4.5f); |
||||
quadMesh3D.scaleTextureCoordinates(new Vector2f(4, 4)); |
||||
quad = new Geometry("previewQuad", quadMesh); |
||||
quad.setLocalTranslation(new Vector3f(-2.25f, -2.25f, 0)); |
||||
quad3D = new Geometry("previewQuad", quadMesh3D); |
||||
quad3D.setLocalTranslation(new Vector3f(-2.25f, -2.25f, 0)); |
||||
material3D = new Material(assetManager, "com/jme3/gde/core/properties/preview/tex3DThumb.j3md"); |
||||
material3D.setFloat("InvDepth", 1f / 16f); |
||||
material3D.setInt("Rows", 4); |
||||
material = new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md"); |
||||
SceneApplication.getApplication().addSceneListener(this); |
||||
} |
||||
|
||||
public void requestPreview(String textureName, String displayName, int width, int height, JLabel picLabel, JLabel infoLabel) { |
||||
TextureKey key = new TextureKey(textureName); |
||||
picPreview = picLabel; |
||||
assetManager.deleteFromCache(key); |
||||
Texture t = assetManager.loadTexture(key); |
||||
Spatial geom = quad; |
||||
if (key.getTextureTypeHint() == Texture.Type.TwoDimensional) { |
||||
material.setTexture("ColorMap", t); |
||||
geom.setMaterial(material); |
||||
if (infoLabel != null) { |
||||
infoLabel.setText(" " + displayName + " w : " + t.getImage().getWidth() + " h : " + t.getImage().getHeight()); |
||||
} |
||||
} else if (key.getTextureTypeHint() == Texture.Type.ThreeDimensional) { |
||||
geom = quad3D; |
||||
assetManager.deleteFromCache(key); |
||||
key.setAsTexture3D(true); |
||||
t = assetManager.loadTexture(key); |
||||
material3D.setTexture("Texture", t); |
||||
geom.setMaterial(material3D); |
||||
if (infoLabel != null) { |
||||
infoLabel.setText(" " + displayName + " (Texture3D) w : " + t.getImage().getWidth() + " h : " + t.getImage().getHeight() + " d : " + t.getImage().getDepth()); |
||||
} |
||||
} else if (key.getTextureTypeHint() == Texture.Type.CubeMap) { |
||||
assetManager.deleteFromCache(key); |
||||
geom = SkyFactory.createSky(assetManager, textureName, false); |
||||
if (infoLabel != null) { |
||||
infoLabel.setText(" " + displayName + " (CubeMap) w : " + t.getImage().getWidth() + " h : " + t.getImage().getHeight()); |
||||
} |
||||
} |
||||
|
||||
PreviewRequest request = new PreviewRequest(this, geom, width, height); |
||||
request.getCameraRequest().setLocation(new Vector3f(0, 0, 5.3f)); |
||||
request.getCameraRequest().setLookAt(new Vector3f(0, 0, 0), Vector3f.UNIT_Y.mult(-1)); |
||||
SceneApplication.getApplication().createPreview(request); |
||||
} |
||||
|
||||
public void cleanUp() { |
||||
SceneApplication.getApplication().removeSceneListener(this); |
||||
} |
||||
|
||||
public void sceneRequested(SceneRequest request) { |
||||
} |
||||
|
||||
public boolean sceneClose(SceneRequest request) { |
||||
return true; |
||||
} |
||||
|
||||
public void previewRequested(PreviewRequest request) { |
||||
if (request.getRequester() == this) { |
||||
final ImageIcon icon = new ImageIcon(request.getImage()); |
||||
java.awt.EventQueue.invokeLater(new Runnable() { |
||||
|
||||
public void run() { |
||||
picPreview.setIcon(icon); |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue