|
@@ -1,54 +1,122 @@
|
|
|
/*
|
|
|
- * 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:
|
|
|
+ * Copyright (c) 2009-2010 jMonkeyEngine All rights reserved.
|
|
|
+ * <p/>
|
|
|
+ * 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.
|
|
|
- *
|
|
|
+ * notice, this list of conditions and the following disclaimer.
|
|
|
+ * <p/>
|
|
|
* * 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.
|
|
|
- *
|
|
|
+ * notice, this list of conditions and the following disclaimer in the
|
|
|
+ * documentation and/or other materials provided with the distribution.
|
|
|
+ * <p/>
|
|
|
* * 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.
|
|
|
+ * may be used to endorse or promote products derived from this software
|
|
|
+ * without specific prior written permission.
|
|
|
+ * <p/>
|
|
|
+ * 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.filters.impl;
|
|
|
|
|
|
-import com.jme3.gde.core.filters.actions.AbstractNewFilterAction;
|
|
|
+import com.jme3.gde.core.filters.actions.AbstractNewFilterWizardAction;
|
|
|
import com.jme3.gde.core.filters.actions.NewFilterAction;
|
|
|
+import com.jme3.gde.core.filters.impl.bloom.BloomWizardPanel1;
|
|
|
import com.jme3.post.Filter;
|
|
|
+import com.jme3.post.FilterPostProcessor;
|
|
|
import com.jme3.post.filters.BloomFilter;
|
|
|
+import java.awt.Component;
|
|
|
+import java.awt.Dialog;
|
|
|
+import java.text.MessageFormat;
|
|
|
+import javax.swing.JComponent;
|
|
|
+import org.openide.DialogDisplayer;
|
|
|
+import org.openide.WizardDescriptor;
|
|
|
+import org.openide.nodes.Node;
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
* @author normenhansen
|
|
|
*/
|
|
|
@org.openide.util.lookup.ServiceProvider(service = NewFilterAction.class)
|
|
|
-public class NewBloomFilterAction extends AbstractNewFilterAction {
|
|
|
+public class NewBloomFilterAction extends AbstractNewFilterWizardAction {
|
|
|
+
|
|
|
+ private WizardDescriptor.Panel[] panels;
|
|
|
|
|
|
public NewBloomFilterAction() {
|
|
|
name = "Bloom";
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- protected Filter doCreateFilter() {
|
|
|
- return new BloomFilter();
|
|
|
+ protected Object showWizard(Node node) {
|
|
|
+ WizardDescriptor wizardDescriptor = new WizardDescriptor(getPanels());
|
|
|
+ // {0} will be replaced by WizardDesriptor.Panel.getComponent().getName()
|
|
|
+ wizardDescriptor.setTitleFormat(new MessageFormat("{0}"));
|
|
|
+ wizardDescriptor.setTitle("Your wizard dialog title here");
|
|
|
+ Dialog dialog = DialogDisplayer.getDefault().createDialog(wizardDescriptor);
|
|
|
+ dialog.setVisible(true);
|
|
|
+ dialog.toFront();
|
|
|
+ boolean cancelled = wizardDescriptor.getValue() != WizardDescriptor.FINISH_OPTION;
|
|
|
+ if (!cancelled) {
|
|
|
+ return wizardDescriptor;
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Filter doCreateFilter(FilterPostProcessor parent, Object configuration) {
|
|
|
+ if (configuration != null) {
|
|
|
+ WizardDescriptor wiz = (WizardDescriptor) configuration;
|
|
|
+ if (wiz.getProperty("mode").equals("Scene")) {
|
|
|
+ return new BloomFilter(BloomFilter.GlowMode.Scene);
|
|
|
+ } else {
|
|
|
+ return new BloomFilter(BloomFilter.GlowMode.Objects);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Initialize panels representing individual wizard's steps and sets
|
|
|
+ * various properties for them influencing wizard appearance.
|
|
|
+ */
|
|
|
+ private WizardDescriptor.Panel[] getPanels() {
|
|
|
+ if (panels == null) {
|
|
|
+ panels = new WizardDescriptor.Panel[]{
|
|
|
+ new BloomWizardPanel1()
|
|
|
+ };
|
|
|
+ String[] steps = new String[panels.length];
|
|
|
+ for (int i = 0; i < panels.length; i++) {
|
|
|
+ Component c = panels[i].getComponent();
|
|
|
+ // Default step name to component name of panel. Mainly useful
|
|
|
+ // for getting the name of the target chooser to appear in the
|
|
|
+ // list of steps.
|
|
|
+ steps[i] = c.getName();
|
|
|
+ if (c instanceof JComponent) { // assume Swing components
|
|
|
+ JComponent jc = (JComponent) c;
|
|
|
+ // Sets step number of a component
|
|
|
+ // TODO if using org.openide.dialogs >= 7.8, can use WizardDescriptor.PROP_*:
|
|
|
+ jc.putClientProperty("WizardPanel_contentSelectedIndex", new Integer(i));
|
|
|
+ // Sets steps names for a panel
|
|
|
+ jc.putClientProperty("WizardPanel_contentData", steps);
|
|
|
+ // Turn on subtitle creation on each step
|
|
|
+ jc.putClientProperty("WizardPanel_autoWizardStyle", Boolean.TRUE);
|
|
|
+ // Show steps on the left side with the image on the background
|
|
|
+ jc.putClientProperty("WizardPanel_contentDisplayed", Boolean.TRUE);
|
|
|
+ // Turn on numbering of all steps
|
|
|
+ jc.putClientProperty("WizardPanel_contentNumbered", Boolean.TRUE);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return panels;
|
|
|
}
|
|
|
}
|