From e910f993d6246cef0044c7a9bc46a27c2fb4d0c0 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Wed, 9 Feb 2011 01:28:27 +0000 Subject: Added some menu code. --- src/tesseract/menuitems/ParticleMenuItem.java | 49 +++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/tesseract/menuitems/ParticleMenuItem.java (limited to 'src/tesseract/menuitems/ParticleMenuItem.java') diff --git a/src/tesseract/menuitems/ParticleMenuItem.java b/src/tesseract/menuitems/ParticleMenuItem.java new file mode 100644 index 0000000..1210f36 --- /dev/null +++ b/src/tesseract/menuitems/ParticleMenuItem.java @@ -0,0 +1,49 @@ +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 + */ +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))); + } + +} -- cgit v1.2.3