From c7c748a296a61103493279ac62a3844e6efd9802 Mon Sep 17 00:00:00 2001 From: Phillip Date: Mon, 21 Feb 2011 00:29:15 +0000 Subject: Fixed checkstyle warnings. All add object menu items are now NewMenu items, deprecated the rest of the menuitems package. --- src/tesseract/newmenu/NewSurfBoardMenuItem.java | 51 +++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/tesseract/newmenu/NewSurfBoardMenuItem.java (limited to 'src/tesseract/newmenu/NewSurfBoardMenuItem.java') diff --git a/src/tesseract/newmenu/NewSurfBoardMenuItem.java b/src/tesseract/newmenu/NewSurfBoardMenuItem.java new file mode 100644 index 0000000..4346012 --- /dev/null +++ b/src/tesseract/newmenu/NewSurfBoardMenuItem.java @@ -0,0 +1,51 @@ +package tesseract.newmenu; + +import java.awt.event.ActionEvent; + +import javax.media.j3d.Appearance; +import javax.media.j3d.ColoringAttributes; +import javax.media.j3d.Material; + +import tesseract.World; +import tesseract.objects.Ellipsoid; + +import com.sun.j3d.utils.geometry.Sphere; + +/** + * SurfBoard Menu Item. + * + * @author Steve Bradshaw + * @author Phillip cardon + */ +public class NewSurfBoardMenuItem extends MenuItem { + + /** + * Serial ID. + */ + private static final long serialVersionUID = 1L; + + /** + * Constructor for the menu item. + * + * @param theWorld The world into which we add. + */ + public NewSurfBoardMenuItem(final World theWorld) { + super(theWorld, "Surf Board"); + } + + /** + * Action handler. + * + * @param arg0 Unused event info. + */ + public void actionPerformed(final ActionEvent arg0) { + Appearance eApp = new Appearance(); + Material eggMat = new Material(); + eggMat.setDiffuseColor(0f, .5f, 1f); + eApp.setMaterial(eggMat); + eApp.setColoringAttributes(new ColoringAttributes( + 0f, 1f, 1f, ColoringAttributes.ALLOW_COLOR_WRITE)); + myWorld.addObject(new Ellipsoid(getPosition(), 1, 0.05f, + new Sphere().getPrimitiveFlags(), 40, eApp, 0.2f, 4.0f)); + } +} -- cgit v1.2.3