301 lines
10 KiB
Java
301 lines
10 KiB
Java
package net.sf.openrocket.gui.configdialog;
|
|
|
|
|
|
import java.awt.event.ActionEvent;
|
|
import java.awt.event.ActionListener;
|
|
|
|
import javax.swing.ComboBoxModel;
|
|
import javax.swing.JButton;
|
|
import javax.swing.JCheckBox;
|
|
import javax.swing.JComboBox;
|
|
import javax.swing.JLabel;
|
|
import javax.swing.JPanel;
|
|
import javax.swing.JSpinner;
|
|
|
|
import net.miginfocom.swing.MigLayout;
|
|
import net.sf.openrocket.document.OpenRocketDocument;
|
|
import net.sf.openrocket.gui.SpinnerEditor;
|
|
import net.sf.openrocket.gui.adaptors.DoubleModel;
|
|
import net.sf.openrocket.gui.adaptors.EnumModel;
|
|
import net.sf.openrocket.gui.adaptors.MaterialModel;
|
|
import net.sf.openrocket.gui.components.BasicSlider;
|
|
import net.sf.openrocket.gui.components.HtmlLabel;
|
|
import net.sf.openrocket.gui.components.StyledLabel;
|
|
import net.sf.openrocket.gui.components.UnitSelector;
|
|
import net.sf.openrocket.l10n.Translator;
|
|
import net.sf.openrocket.material.Material;
|
|
import net.sf.openrocket.rocketcomponent.DeploymentConfiguration;
|
|
import net.sf.openrocket.rocketcomponent.RocketComponent;
|
|
import net.sf.openrocket.rocketcomponent.Streamer;
|
|
import net.sf.openrocket.rocketcomponent.DeploymentConfiguration.DeployEvent;
|
|
import net.sf.openrocket.startup.Application;
|
|
import net.sf.openrocket.unit.UnitGroup;
|
|
|
|
public class StreamerConfig extends RecoveryDeviceConfig {
|
|
private static final Translator trans = Application.getTranslator();
|
|
|
|
public StreamerConfig(OpenRocketDocument d, final RocketComponent component) {
|
|
super(d, component);
|
|
Streamer streamer = (Streamer) component;
|
|
|
|
JPanel primary = new JPanel(new MigLayout());
|
|
|
|
JPanel panel = new JPanel(new MigLayout("gap rel unrel", "[][65lp::][30lp::][]", ""));
|
|
|
|
|
|
//// Strip length:
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Striplength")));
|
|
|
|
DoubleModel m = new DoubleModel(component, "StripLength", UnitGroup.UNITS_LENGTH, 0);
|
|
|
|
JSpinner spin = new JSpinner(m.getSpinnerModel());
|
|
spin.setEditor(new SpinnerEditor(spin));
|
|
panel.add(spin, "growx");
|
|
panel.add(new UnitSelector(m), "growx");
|
|
panel.add(new BasicSlider(m.getSliderModel(0, 0.6, 1.5)), "w 100lp, wrap");
|
|
|
|
//// Strip width:
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Stripwidth")));
|
|
|
|
m = new DoubleModel(component, "StripWidth", UnitGroup.UNITS_LENGTH, 0);
|
|
|
|
spin = new JSpinner(m.getSpinnerModel());
|
|
spin.setEditor(new SpinnerEditor(spin));
|
|
panel.add(spin, "growx");
|
|
panel.add(new UnitSelector(m), "growx");
|
|
panel.add(new BasicSlider(m.getSliderModel(0, 0.2)), "w 100lp, wrap 20lp");
|
|
|
|
|
|
|
|
//// Strip area:
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Striparea")));
|
|
|
|
m = new DoubleModel(component, "Area", UnitGroup.UNITS_AREA, 0);
|
|
|
|
spin = new JSpinner(m.getSpinnerModel());
|
|
spin.setEditor(new SpinnerEditor(spin));
|
|
panel.add(spin, "growx");
|
|
panel.add(new UnitSelector(m), "growx");
|
|
panel.add(new BasicSlider(m.getSliderModel(0, 0.04, 0.25)), "w 100lp, wrap");
|
|
|
|
//// Aspect ratio:
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Aspectratio")));
|
|
|
|
m = new DoubleModel(component, "AspectRatio", UnitGroup.UNITS_NONE, 0);
|
|
|
|
spin = new JSpinner(m.getSpinnerModel());
|
|
spin.setEditor(new SpinnerEditor(spin));
|
|
panel.add(spin, "growx");
|
|
// panel.add(new UnitSelector(m),"growx");
|
|
panel.add(new BasicSlider(m.getSliderModel(2, 15)), "skip, w 100lp, wrap 20lp");
|
|
|
|
|
|
//// Material:
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Material")));
|
|
|
|
JComboBox combo = new JComboBox(new MaterialModel(panel, component,
|
|
Material.Type.SURFACE));
|
|
//// The component material affects the weight of the component.
|
|
combo.setToolTipText(trans.get("StreamerCfg.combo.ttip.MaterialModel"));
|
|
panel.add(combo, "spanx 3, growx, wrap 20lp");
|
|
|
|
|
|
|
|
// CD
|
|
//// <html>Drag coefficient C<sub>D</sub>:
|
|
JLabel label = new HtmlLabel(trans.get("StreamerCfg.lbl.longA1"));
|
|
//// <html>The drag coefficient relative to the total area of the streamer.<br>
|
|
String tip = trans.get("StreamerCfg.lbl.longB1") +
|
|
//// "A larger drag coefficient yields a slowed descent rate.
|
|
trans.get("StreamerCfg.lbl.longB2");
|
|
label.setToolTipText(tip);
|
|
panel.add(label);
|
|
|
|
m = new DoubleModel(component, "CD", UnitGroup.UNITS_COEFFICIENT, 0);
|
|
|
|
spin = new JSpinner(m.getSpinnerModel());
|
|
spin.setToolTipText(tip);
|
|
spin.setEditor(new SpinnerEditor(spin));
|
|
panel.add(spin, "growx");
|
|
|
|
JCheckBox check = new JCheckBox(m.getAutomaticAction());
|
|
//// Automatic
|
|
check.setText(trans.get("StreamerCfg.lbl.Automatic"));
|
|
panel.add(check, "skip, span, wrap");
|
|
|
|
//// The drag coefficient is relative to the area of the streamer.
|
|
panel.add(new StyledLabel(trans.get("StreamerCfg.lbl.longC1"),
|
|
-2), "span, wrap");
|
|
|
|
|
|
|
|
primary.add(panel, "grow, gapright 20lp");
|
|
panel = new JPanel(new MigLayout("gap rel unrel", "[][65lp::][30lp::][]", ""));
|
|
|
|
|
|
|
|
|
|
//// Position
|
|
//// Position relative to:
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Posrelativeto")));
|
|
|
|
combo = new JComboBox(
|
|
new EnumModel<RocketComponent.Position>(component, "RelativePosition",
|
|
new RocketComponent.Position[] {
|
|
RocketComponent.Position.TOP,
|
|
RocketComponent.Position.MIDDLE,
|
|
RocketComponent.Position.BOTTOM,
|
|
RocketComponent.Position.ABSOLUTE
|
|
}));
|
|
panel.add(combo, "spanx, growx, wrap");
|
|
|
|
//// plus
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.plus")), "right");
|
|
|
|
m = new DoubleModel(component, "PositionValue", UnitGroup.UNITS_LENGTH);
|
|
spin = new JSpinner(m.getSpinnerModel());
|
|
spin.setEditor(new SpinnerEditor(spin));
|
|
panel.add(spin, "growx");
|
|
|
|
panel.add(new UnitSelector(m), "growx");
|
|
panel.add(new BasicSlider(m.getSliderModel(
|
|
new DoubleModel(component.getParent(), "Length", -1.0, UnitGroup.UNITS_NONE),
|
|
new DoubleModel(component.getParent(), "Length"))),
|
|
"w 100lp, wrap");
|
|
|
|
|
|
//// Spatial length:
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Packedlength")));
|
|
|
|
m = new DoubleModel(component, "Length", UnitGroup.UNITS_LENGTH, 0);
|
|
|
|
spin = new JSpinner(m.getSpinnerModel());
|
|
spin.setEditor(new SpinnerEditor(spin));
|
|
panel.add(spin, "growx");
|
|
|
|
panel.add(new UnitSelector(m), "growx");
|
|
panel.add(new BasicSlider(m.getSliderModel(0, 0.1, 0.5)), "w 100lp, wrap");
|
|
|
|
|
|
//// Tube diameter
|
|
//// Packed diameter:
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Packeddiam")));
|
|
|
|
DoubleModel od = new DoubleModel(component, "Radius", 2, UnitGroup.UNITS_LENGTH, 0);
|
|
// Diameter = 2*Radius
|
|
|
|
spin = new JSpinner(od.getSpinnerModel());
|
|
spin.setEditor(new SpinnerEditor(spin));
|
|
panel.add(spin, "growx");
|
|
|
|
panel.add(new UnitSelector(od), "growx");
|
|
panel.add(new BasicSlider(od.getSliderModel(0, 0.04, 0.2)), "w 100lp, wrap 30lp");
|
|
|
|
|
|
//// Deployment
|
|
//// Deploys at:
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Deploysat") + " " + CommonStrings.dagger), "");
|
|
|
|
DeploymentConfiguration deploymentConfig = streamer.getDeploymentConfiguration().getDefault();
|
|
combo = new JComboBox(new EnumModel<DeploymentConfiguration.DeployEvent>(deploymentConfig, "DeployEvent"));
|
|
if( (component.getStageNumber() + 1 ) == d.getRocket().getStageCount() ){
|
|
// This is the bottom stage. restrict deployment options.
|
|
combo.removeItem( DeployEvent.LOWER_STAGE_SEPARATION );
|
|
}
|
|
panel.add(combo, "spanx 3, growx, wrap");
|
|
|
|
// ... and delay
|
|
//// plus
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.plusdelay")), "right");
|
|
|
|
m = new DoubleModel(deploymentConfig, "DeployDelay", 0);
|
|
spin = new JSpinner(m.getSpinnerModel());
|
|
spin.setEditor(new SpinnerEditor(spin, 3));
|
|
panel.add(spin, "spanx, split");
|
|
|
|
//// seconds
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.seconds")), "wrap paragraph");
|
|
|
|
// Altitude:
|
|
label = new JLabel(trans.get("StreamerCfg.lbl.Altitude") + CommonStrings.dagger);
|
|
altitudeComponents.add(label);
|
|
panel.add(label);
|
|
|
|
m = new DoubleModel(deploymentConfig, "DeployAltitude", UnitGroup.UNITS_DISTANCE, 0);
|
|
|
|
spin = new JSpinner(m.getSpinnerModel());
|
|
spin.setEditor(new SpinnerEditor(spin));
|
|
altitudeComponents.add(spin);
|
|
panel.add(spin, "growx");
|
|
UnitSelector unit = new UnitSelector(m);
|
|
altitudeComponents.add(unit);
|
|
panel.add(unit, "growx");
|
|
BasicSlider slider = new BasicSlider(m.getSliderModel(100, 1000));
|
|
altitudeComponents.add(slider);
|
|
panel.add(slider, "w 100lp, wrap");
|
|
|
|
panel.add(new StyledLabel(CommonStrings.override_description, -1), "skip 1, spanx, wrap para");
|
|
|
|
primary.add(panel, "grow");
|
|
|
|
updateFields();
|
|
|
|
//// General and General properties
|
|
tabbedPane.insertTab(trans.get("StreamerCfg.tab.General"), null, primary,
|
|
trans.get("StreamerCfg.tab.ttip.General"), 0);
|
|
//// Radial position and Radial position configuration
|
|
tabbedPane.insertTab(trans.get("StreamerCfg.tab.Radialpos"), null, positionTab(),
|
|
trans.get("StreamerCfg.tab.ttip.Radialpos"), 1);
|
|
tabbedPane.setSelectedIndex(0);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected JPanel positionTab() {
|
|
JPanel panel = new JPanel(new MigLayout("gap rel unrel", "[][65lp::][30lp::]", ""));
|
|
|
|
//// Radial position
|
|
//// Radial distance:
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Radialdistance")));
|
|
|
|
DoubleModel m = new DoubleModel(component, "RadialPosition", UnitGroup.UNITS_LENGTH, 0);
|
|
|
|
JSpinner spin = new JSpinner(m.getSpinnerModel());
|
|
spin.setEditor(new SpinnerEditor(spin));
|
|
panel.add(spin, "growx");
|
|
|
|
panel.add(new UnitSelector(m), "growx");
|
|
panel.add(new BasicSlider(m.getSliderModel(0, 0.1, 1.0)), "w 100lp, wrap");
|
|
|
|
|
|
//// Radial direction
|
|
//// Radial direction:
|
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Radialdirection")));
|
|
|
|
m = new DoubleModel(component, "RadialDirection", UnitGroup.UNITS_ANGLE);
|
|
|
|
spin = new JSpinner(m.getSpinnerModel());
|
|
spin.setEditor(new SpinnerEditor(spin));
|
|
panel.add(spin, "growx");
|
|
|
|
panel.add(new UnitSelector(m), "growx");
|
|
panel.add(new BasicSlider(m.getSliderModel(-Math.PI, Math.PI)), "w 100lp, wrap");
|
|
|
|
|
|
//// Reset button
|
|
JButton button = new JButton(trans.get("StreamerCfg.but.Reset"));
|
|
button.addActionListener(new ActionListener() {
|
|
@Override
|
|
public void actionPerformed(ActionEvent e) {
|
|
((Streamer) component).setRadialDirection(0.0);
|
|
((Streamer) component).setRadialPosition(0.0);
|
|
}
|
|
});
|
|
panel.add(button, "spanx, right");
|
|
|
|
return panel;
|
|
}
|
|
}
|