blob: 30aed4515824f672194f3526d515c363601aa15b (
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
package demos.es1.angeles;
import java.nio.*;
import javax.media.opengl.*;
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 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) {
}
private void run(int type) {
int width = 800;
int height = 480;
System.out.println("angeles.Main.run()");
//GLProfile.setProfileGL2ES1();
GLProfile.setProfileGLAny();
try {
// Hook this into EGL
GLCapabilities caps = new GLCapabilities();
// 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(NewtFactory.AWT, null); // local display
Screen nScreen = NewtFactory.createScreen(NewtFactory.AWT, nDisplay, 0); // screen 0
nWindow = NewtFactory.createWindow(NewtFactory.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);
}
}
|