|
@@ -0,0 +1,264 @@
|
|
|
|
+/*
|
|
|
|
+ * 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;
|
|
|
|
+
|
|
|
|
+import Model.DDSImageFile;
|
|
|
|
+import com.jme3.gde.core.assets.ProjectAssetManager;
|
|
|
|
+import com.jme3.texture.Texture;
|
|
|
|
+import java.awt.image.BufferedImage;
|
|
|
|
+import java.io.File;
|
|
|
|
+import java.io.IOException;
|
|
|
|
+import java.util.logging.Logger;
|
|
|
|
+import javax.swing.DefaultListSelectionModel;
|
|
|
|
+import javax.swing.Icon;
|
|
|
|
+import javax.swing.ImageIcon;
|
|
|
|
+import jme3tools.converters.ImageToAwt;
|
|
|
|
+import org.openide.filesystems.FileUtil;
|
|
|
|
+import org.openide.util.Exceptions;
|
|
|
|
+import org.openide.util.ImageUtilities;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Displays all textures in the ProjectAssetManager,
|
|
|
|
+ * lets you select one, and shows a preview of it.
|
|
|
|
+ *
|
|
|
|
+ * The user can de-select the currently selected texture to specify they
|
|
|
|
+ * do not want a texture, and in that case null is returned.
|
|
|
|
+ *
|
|
|
|
+ * @author bowens
|
|
|
|
+ */
|
|
|
|
+public class TextureBrowser extends javax.swing.JDialog {
|
|
|
|
+
|
|
|
|
+ private ProjectAssetManager assetManager;
|
|
|
|
+ private TexturePropertyEditor editor;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public TextureBrowser(java.awt.Frame parent, boolean modal, ProjectAssetManager assetManager, TexturePropertyEditor editor) {
|
|
|
|
+ super(parent, modal);
|
|
|
|
+ this.assetManager = assetManager;
|
|
|
|
+ this.editor = editor;
|
|
|
|
+ initComponents();
|
|
|
|
+ loadAvailableTextures();
|
|
|
|
+ setSelectedTexture((Texture)editor.getValue());
|
|
|
|
+ setLocationRelativeTo(null);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /** This method is called from within the constructor to
|
|
|
|
+ * initialize the form.
|
|
|
|
+ * WARNING: Do NOT modify this code. The content of this method is
|
|
|
|
+ * always regenerated by the Form Editor.
|
|
|
|
+ */
|
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
|
+ // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
|
|
|
|
+ private void initComponents() {
|
|
|
|
+
|
|
|
|
+ cancelButton = new javax.swing.JButton();
|
|
|
|
+ okButton = new javax.swing.JButton();
|
|
|
|
+ jPanel1 = new javax.swing.JPanel();
|
|
|
|
+ jScrollPane1 = new javax.swing.JScrollPane();
|
|
|
|
+ textureList = new javax.swing.JList();
|
|
|
|
+ jScrollPane2 = new javax.swing.JScrollPane();
|
|
|
|
+ imagePreviewLabel = new javax.swing.JLabel();
|
|
|
|
+
|
|
|
|
+ setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
|
|
|
|
+ setTitle(org.openide.util.NbBundle.getMessage(TextureBrowser.class, "TextureBrowser.title")); // NOI18N
|
|
|
|
+
|
|
|
|
+ cancelButton.setText(org.openide.util.NbBundle.getMessage(TextureBrowser.class, "TextureBrowser.cancelButton.text")); // NOI18N
|
|
|
|
+ cancelButton.addActionListener(new java.awt.event.ActionListener() {
|
|
|
|
+ public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
|
|
+ cancelButtonActionPerformed(evt);
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ okButton.setText(org.openide.util.NbBundle.getMessage(TextureBrowser.class, "TextureBrowser.okButton.text")); // NOI18N
|
|
|
|
+ okButton.addActionListener(new java.awt.event.ActionListener() {
|
|
|
|
+ public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
|
|
+ okButtonActionPerformed(evt);
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ textureList.setSelectionMode(javax.swing.ListSelectionModel.SINGLE_SELECTION);
|
|
|
|
+ textureList.setSelectionModel(new ToggleSelectionModel());
|
|
|
|
+ textureList.addListSelectionListener(new javax.swing.event.ListSelectionListener() {
|
|
|
|
+ public void valueChanged(javax.swing.event.ListSelectionEvent evt) {
|
|
|
|
+ textureListValueChanged(evt);
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ jScrollPane1.setViewportView(textureList);
|
|
|
|
+
|
|
|
|
+ imagePreviewLabel.setText(org.openide.util.NbBundle.getMessage(TextureBrowser.class, "TextureBrowser.imagePreviewLabel.text")); // NOI18N
|
|
|
|
+ jScrollPane2.setViewportView(imagePreviewLabel);
|
|
|
|
+
|
|
|
|
+ javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
|
|
|
|
+ jPanel1.setLayout(jPanel1Layout);
|
|
|
|
+ jPanel1Layout.setHorizontalGroup(
|
|
|
|
+ jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
+ .addGroup(jPanel1Layout.createSequentialGroup()
|
|
|
|
+ .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 264, Short.MAX_VALUE)
|
|
|
|
+ .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
+ .addComponent(jScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 267, Short.MAX_VALUE))
|
|
|
|
+ );
|
|
|
|
+ jPanel1Layout.setVerticalGroup(
|
|
|
|
+ jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
+ .addComponent(jScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 299, Short.MAX_VALUE)
|
|
|
|
+ .addComponent(jScrollPane1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 299, Short.MAX_VALUE)
|
|
|
|
+ );
|
|
|
|
+
|
|
|
|
+ javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
|
|
|
|
+ getContentPane().setLayout(layout);
|
|
|
|
+ layout.setHorizontalGroup(
|
|
|
|
+ layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
+ .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
|
|
|
+ .addContainerGap(357, Short.MAX_VALUE)
|
|
|
|
+ .addComponent(cancelButton)
|
|
|
|
+ .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
|
+ .addComponent(okButton)
|
|
|
|
+ .addGap(17, 17, 17))
|
|
|
|
+ .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
|
|
|
+ );
|
|
|
|
+ layout.setVerticalGroup(
|
|
|
|
+ layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
|
+ .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
|
|
|
+ .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
|
|
|
+ .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
|
|
|
+ .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
|
|
+ .addComponent(okButton)
|
|
|
|
+ .addComponent(cancelButton)))
|
|
|
|
+ );
|
|
|
|
+
|
|
|
|
+ pack();
|
|
|
|
+ }// </editor-fold>//GEN-END:initComponents
|
|
|
|
+
|
|
|
|
+ private void okButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_okButtonActionPerformed
|
|
|
|
+ setTexture();
|
|
|
|
+ dispose();
|
|
|
|
+ }//GEN-LAST:event_okButtonActionPerformed
|
|
|
|
+
|
|
|
|
+ private void cancelButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cancelButtonActionPerformed
|
|
|
|
+ dispose();
|
|
|
|
+ }//GEN-LAST:event_cancelButtonActionPerformed
|
|
|
|
+
|
|
|
|
+ private void textureListValueChanged(javax.swing.event.ListSelectionEvent evt) {//GEN-FIRST:event_textureListValueChanged
|
|
|
|
+ selectionChanged();
|
|
|
|
+ }//GEN-LAST:event_textureListValueChanged
|
|
|
|
+
|
|
|
|
+ private void setTexture() {
|
|
|
|
+ if (textureList.getSelectedIndex() > -1) {
|
|
|
|
+ textureList.getSelectedValue();
|
|
|
|
+ String selected = (String) textureList.getSelectedValue();
|
|
|
|
+ Texture tex = assetManager.loadTexture(selected);
|
|
|
|
+ editor.setValue(tex);
|
|
|
|
+ editor.setAsText(selected);
|
|
|
|
+ } else {
|
|
|
|
+ editor.setValue(null);
|
|
|
|
+ editor.setAsText(null);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ // Variables declaration - do not modify//GEN-BEGIN:variables
|
|
|
|
+ private javax.swing.JButton cancelButton;
|
|
|
|
+ private javax.swing.JLabel imagePreviewLabel;
|
|
|
|
+ private javax.swing.JPanel jPanel1;
|
|
|
|
+ private javax.swing.JScrollPane jScrollPane1;
|
|
|
|
+ private javax.swing.JScrollPane jScrollPane2;
|
|
|
|
+ private javax.swing.JButton okButton;
|
|
|
|
+ private javax.swing.JList textureList;
|
|
|
|
+ // End of variables declaration//GEN-END:variables
|
|
|
|
+
|
|
|
|
+ private void loadAvailableTextures() {
|
|
|
|
+ if (assetManager == null)
|
|
|
|
+ return;
|
|
|
|
+
|
|
|
|
+ textureList.setListData(assetManager.getTextures());
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void selectionChanged() {
|
|
|
|
+ if (textureList.getSelectedIndex() > -1) {
|
|
|
|
+ String selected = (String) textureList.getSelectedValue();
|
|
|
|
+ Texture tex = assetManager.loadTexture(selected);
|
|
|
|
+ Icon newicon = null;
|
|
|
|
+ if(selected.endsWith(".dds")||selected.endsWith(".DDS")){
|
|
|
|
+ try {
|
|
|
|
+ File file = FileUtil.toFile(assetManager.getAssetFolder().getFileObject(selected));
|
|
|
|
+ DDSImageFile ddsImageFile = new DDSImageFile(file);
|
|
|
|
+ BufferedImage bufferedImage = ddsImageFile.getData();
|
|
|
|
+ newicon = new ImageIcon(bufferedImage);
|
|
|
|
+ } catch (IOException ex) {
|
|
|
|
+ Exceptions.printStackTrace(ex);
|
|
|
|
+ }
|
|
|
|
+ }else{
|
|
|
|
+ newicon = ImageUtilities.image2Icon(ImageToAwt.convert(tex.getImage(), false, true, 0));
|
|
|
|
+ }
|
|
|
|
+ imagePreviewLabel.setIcon(newicon);
|
|
|
|
+ } else {
|
|
|
|
+ imagePreviewLabel.setIcon(null);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void setSelectedTexture(Texture texture) {
|
|
|
|
+ if (texture != null) {
|
|
|
|
+ Logger.getLogger(TextureBrowser.class.getName()).finer("Looking for Texture: "+texture.getName());
|
|
|
|
+ for (int i=0; i<textureList.getModel().getSize(); i++) {
|
|
|
|
+ Logger.getLogger(TextureBrowser.class.getName()).finer("Texture name: "+textureList.getModel().getElementAt(i));
|
|
|
|
+ if (textureList.getModel().getElementAt(i).equals(texture.getName()) ) {
|
|
|
|
+ textureList.setSelectedIndex(i);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ class ToggleSelectionModel extends DefaultListSelectionModel {
|
|
|
|
+ boolean gestureStarted = false;
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setSelectionInterval(int index0, int index1) {
|
|
|
|
+ if (isSelectedIndex(index0) && !gestureStarted) {
|
|
|
|
+ super.removeSelectionInterval(index0, index1);
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ super.setSelectionInterval(index0, index1);
|
|
|
|
+ }
|
|
|
|
+ gestureStarted = true;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setValueIsAdjusting(boolean isAdjusting) {
|
|
|
|
+ if (isAdjusting == false) {
|
|
|
|
+ gestureStarted = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|