summaryrefslogtreecommitdiff
path: root/src/tesseract/menuitems/ParticleMenuItem.java
blob: 822266cee3d3abfd2ffc7eaa5628ad004a7080f3 (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
package tesseract.menuitems;

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

import javax.swing.JColorChooser;
import javax.swing.JOptionPane;
import javax.vecmath.Color3f;
import javax.vecmath.Vector3f;

import tesseract.World;
import tesseract.objects.Particle;

/**
 * Particle Menu Item.
 * 
 * @author Jesse Morgan
 * @deprecated By Phillip Cardon
 */
public class ParticleMenuItem extends TesseractMenuItem {

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

	/**
	 * Constructor for the menu item.
	 * 
	 * @param theWorld The world into which we add.
	 */
	public ParticleMenuItem(final World theWorld) {
		super(theWorld, "Particle");
	}
	
	/**
	 * Action handler.
	 * 
	 * @param arg0 Unused event info.
	 */
	public void actionPerformed(final ActionEvent arg0) {
		Color c = JColorChooser.showDialog(null, "Particle Color", Color.RED);
		
		Vector3f pos = 
			parseVector(JOptionPane.showInputDialog("Enter the position"));
		
		myWorld.addObject(new Particle(pos, new Color3f(c)));
	}

}