summaryrefslogtreecommitdiff
path: root/src/tesseract/menuitems/DonutMenuItem.java
blob: fb4a79ab0ee6e5c9e28bd663247131ab2e27d7d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package tesseract.menuitems;

import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JColorChooser;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.vecmath.Color3f;
import javax.vecmath.Vector3f;

import tesseract.World;
import tesseract.objects.ChainLink;
import tesseract.objects.ChainLink2;
import tesseract.objects.Icosahedron;
import tesseract.objects.PlanarPolygon;

/**
 * Icosahedron Menu Item.
 * 
 * @author Steve Bradshaw
 */
public class DonutMenuItem extends TesseractMenuItem {

	/**
	 * Serial ID.
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * Constructor for the menu item.
	 * 
	 * @param theWorld The world into which we add.
	 */
	public DonutMenuItem(final World theWorld) {
		super(theWorld, "Donut");
	}
	
	/**
	 * Action handler.
	 * 
	 * @param arg0 Unused event info.
	 */
	public void actionPerformed(final ActionEvent arg0) {
		createParameterMenu();
		
		final float scale = 0.5f;
		final float sliceRadius = .06f;  //inside whole
		final int sliceDivisions = 50;
		final float arcRadius = .08f; //outside whole
		final int arcDivisions = 30;
		
		//If the default button is checked, the frame will close.
		final JCheckBox defaultButton = getDefaultButton();
		final JFrame params = getParamFrame();
		//final JButton enterButton = getEnterButton();

		defaultButton.addActionListener(new ActionListener() {
			public void actionPerformed(final ActionEvent e) {
				if (defaultButton.isSelected()) {
					myWorld.addObject(new ChainLink(getDefaultPosition(), 1, scale,
							sliceRadius, sliceDivisions, arcRadius, arcDivisions));
					params.dispose();
				}
			}
		});
		
		/*enterButton.addActionListener(new ActionListener() {
			public void actionPerformed(final ActionEvent event) {
					String string = getPositionField().getText();
					Vector3f pos = parseVector(string);
					setPosition(pos);
				
					String string2 = getRadiusField().getText();
					float radius = Float.parseFloat(string2);
					setRadius(radius);

					String string3 = getMassField().getText();
					float mass = Float.parseFloat(string3);
					setMass(mass);
	
				if (event.getSource() == enterButton) {
					myWorld.addObject(new ChainLink(getPosition(), getRadius()));
					params.dispose();
				}
			}
		});*/
	}
}