diff options
author | Kenneth Russel <[email protected]> | 2009-06-15 23:12:27 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2009-06-15 23:12:27 +0000 |
commit | 41cd6c47b23975098cd155517790e018670785e7 (patch) | |
tree | 247333528ad674d427ba96b1e05810f7961d609e /src/demos/es1/angeles/Main.java | |
parent | 935d2596c13371bb745d921dbcb9f05b0c11a010 (diff) |
Copied JOGL_2_SANDBOX r350 on to trunk; JOGL_2_SANDBOX branch is now closed
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@352 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/es1/angeles/Main.java')
-rwxr-xr-x | src/demos/es1/angeles/Main.java | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/src/demos/es1/angeles/Main.java b/src/demos/es1/angeles/Main.java new file mode 100755 index 0000000..3b8400b --- /dev/null +++ b/src/demos/es1/angeles/Main.java @@ -0,0 +1,131 @@ +package demos.es1.angeles; + +import java.nio.*; +import javax.media.opengl.*; +import javax.media.nativewindow.*; +import com.sun.javafx.newt.*; +import com.sun.javafx.newt.opengl.*; + +public class Main implements WindowListener, MouseListener { + + public boolean quit = false; + public GLWindow window = null; + + public void windowResized(WindowEvent e) { } + public void windowMoved(WindowEvent e) { } + public void windowGainedFocus(WindowEvent e) { } + public void windowLostFocus(WindowEvent e) { } + public void windowDestroyNotify(WindowEvent e) { + quit = true; + } + + public void mouseClicked(MouseEvent e) { + if (e.getClickCount() > 1) { + quit=true; + } + } + public void mouseEntered(MouseEvent e) { + } + public void mouseExited(MouseEvent e) { + } + public void mousePressed(MouseEvent e) { + } + public void mouseReleased(MouseEvent e) { + } + public void mouseMoved(MouseEvent e) { + } + public void mouseDragged(MouseEvent e) { + } + public void mouseWheelMoved(MouseEvent e) { + } + + private void run(int type) { + int width = 800; + int height = 480; + System.out.println("angeles.Main.run()"); + //GLProfile.setProfileGL2ES1(); + try { + // Hook this into EGL + GLCapabilities caps = new GLCapabilities(null); + // For emulation library, use 16 bpp + caps.setRedBits(5); + caps.setGreenBits(6); + caps.setBlueBits(5); + /* + caps.setRedBits(8); + caps.setGreenBits(8); + caps.setBlueBits(8); + caps.setAlphaBits(8); + */ + caps.setDepthBits(16); + + Window nWindow = null; + if(0!=(type&USE_AWT)) { + Display nDisplay = NewtFactory.createDisplay(NativeWindowFactory.TYPE_AWT, null); // local display + Screen nScreen = NewtFactory.createScreen(NativeWindowFactory.TYPE_AWT, nDisplay, 0); // screen 0 + nWindow = NewtFactory.createWindow(NativeWindowFactory.TYPE_AWT, nScreen, caps); + } + window = GLWindow.create(nWindow, caps); + + window.addWindowListener(this); + window.addMouseListener(this); + + window.enablePerfLog(true); + window.setSize(width, height); + window.setFullscreen(true); + window.setVisible(true); + + GL gl = window.getGL(); + if(gl.isGLES1() && 0==(type&USE_ANGELESF)) { + System.out.println("Using: AngelesES1 .. "); + AngelesES1 angel = new AngelesES1( 0 == (type&USE_NOBLEND) ); + window.addGLEventListener(angel); + } else { + if(0!=(type&USE_INTERLEAVE)) { + System.out.println("Using: AngelesGLil .. "); + AngelesGLil angel = new AngelesGLil( 0 == (type&USE_NOBLEND) ); + window.addGLEventListener(angel); + } else { + System.out.println("Using: AngelesGL .. "); + AngelesGL angel = new AngelesGL( 0 == (type&USE_NOBLEND) ); + window.addGLEventListener(angel); + } + } + + while (!quit && window.getDuration() < 215000) { + window.display(); + } + + // Shut things down cooperatively + window.destroy(); + window.getFactory().shutdown(); + System.out.println("angeles.Main shut down cleanly."); + } catch (GLException e) { + e.printStackTrace(); + } + } + + public static int USE_NEWT = 0; + public static int USE_AWT = 1 << 0; + public static int USE_ANGELESF = 1 << 1; + public static int USE_NOBLEND = 1 << 2; + public static int USE_INTERLEAVE= 1 << 3; + + public static void main(String[] args) { + int type = USE_NEWT ; + for(int i=args.length-1; i>=0; i--) { + if(args[i].equals("-awt")) { + type |= USE_AWT; + } else if(args[i].equals("-angelesf")) { + type |= USE_ANGELESF; + } else if(args[i].equals("-noblend")) { + type |= USE_NOBLEND; + } else if(args[i].equals("-interleave")) { + type |= USE_INTERLEAVE; + } + } + new Main().run(type); + System.exit(0); + } + +} |