/* $Id: tessdemo.java,v 1.2 2001/02/13 05:32:09 sven Exp $ */ /* * A demo of the GLU polygon tesselation functions written by Bogdan Sikorski. * This demo isn't built by the Makefile because it needs GLUT. After you've * installed GLUT you can try this demo. * Here's the command for IRIX, for example: cc -g -ansi -prototypes -fullwarn -float -I../include -DSHM tess_demo.c -L../lib -lglut -lMesaGLU -lMesaGL -lm -lX11 -lXext -lXmu -lfpe -lXext -o tess_demo */ /* * Updated for GLU 1.3f tessellation by Gareth Hughes */ /* * $Log: tessdemo.java,v $ * Revision 1.2 2001/02/13 05:32:09 sven * JAWT Support JDK >=1.3 * * Revision 1.1.1.2 2000/11/18 10:41:27 sven * still working for the initial check in * * Revision 1.1.1.1 2000/11/18 06:53:19 sven * Initial import into CVS. * Version 2.5.0.0 beta 1 * * Revision 1.3f.2.1f 1999/11/16 11:09:09 gareth * Added combine callback. Converted vertices from ints to floats. * * Revision 1.3f 1999/11/04 04:00:42 gareth * Updated demo for new GLU 1.3f tessellation. Added optimized rendering * by saving the output of the tessellation into display lists. * * Revision 1.2f 1999/09/19 20:09:00 tanner * * lots of autoconf updates * * Revision 1.1f.1.1f 1999/08/19 00:55:40 jtg * Imported sources * * Revision 3.5f 1999/03/28 18:24:37 brianp * minor clean-up * * Revision 3.4f 1999/02/14 03:37:07 brianp * fixed callback problem * * Revision 3.3f 1998/07/26 01:25:26 brianp * removed include of gl.h and glu.h * * Revision 3.2f 1998/06/29 02:37:30 brianp * minor changes for Windows (Ted Jump) * * Revision 3.1f 1998/06/09 01:53:49 brianp * main() should return an int * * Revision 3.0f 1998/02/14 18:42:29 brianp * initial rev * */ import gl4java.utils.glut.*; import gl4java.utils.glut.fonts.*; import gl4java.utils.textures.*; import gl4java.awt.*; import java.applet.*; import java.awt.*; import java.awt.Dimension; import java.awt.event.*; import java.lang.*; import java.util.*; import gl4java.*; public class tessdemo extends Applet { MyCanvas canvas = null; boolean isAnApplet = true; public void init() { Dimension d = getSize(); setLayout(new BorderLayout()); canvas = new MyCanvas (d.width, d.height); add("Center", canvas); } public static void main( String args[] ) { Frame mainFrame = new Frame("tessdemo"); tessdemo applet = new tessdemo(); applet.isAnApplet = false; applet.setSize(400, 400); applet.init(); applet.start(); mainFrame.add(applet); mainFrame.pack(); mainFrame.setVisible(true); System.out.println(applet.canvas.usage()); } public void start() { } public void stop() { } static final int MAX_POINTS = 256; static final int MAX_CONTOURS = 32; static final int MAX_TRIANGLES = 256; static final String MENU_DONE = "Done"; static final String MENU_TESS = "Tesselate"; static final String MENU_CLR = "Clear"; static final String MENU_SNAPSHOT = "Snapshot"; static final int MODE_DONE =0; static final int MODE_CLR =1; static final int MODE_DEFINE =2; static final int MODE_TESSELATE =3; static final int MODE_TESSELATED =4; protected class Contour { float p[][]; int point_cnt; public Contour() { p = new float[MAX_POINTS][2]; point_cnt = 0; } } protected class Triangle { int no; float p[][]; float color[][]; public Triangle() { no = 0; p = new float[3][2]; color = new float[3][3]; } } protected class MyCanvas extends GLCanvas implements MouseListener, ActionListener { protected GLUTFunc glut = null; private PopupMenu menu = null; private boolean menu_showing = false; int contour_cnt; int triangle_cnt; int mode; int list_start; float edge_color[]; Contour contours[/*MAX_CONTOURS*/]; Triangle triangles[/*MAX_TRIANGLES*/]; TGATextureGrabber textgrab = null; boolean doSnapshot=false; public MyCanvas(int w, int h) { super(w,h); GLContext.gljNativeDebug = false; GLContext.gljClassDebug = false; } public void init() { int i; glut = new GLUTFuncLightImplWithFonts(gl, glu); textgrab = new TGATextureGrabber(gl); contours = new Contour[MAX_CONTOURS]; for(i=0; i 2 ) { /* gl.glBegin( GL_LINES ); gl.glVertex2fv( contours[contour_cnt].p[0] ); gl.glVertex2fv( contours[contour_cnt].p[point_cnt-1] ); gl.glEnd(); */ contours[contour_cnt].p[point_cnt][0] = -1; contour_cnt++; contours[contour_cnt].point_cnt = 0; } } public void display() { /* Standard GL4Java Init */ if( glj.gljMakeCurrent() == false ) { System.out.println("problem in use() method"); return; } int i,j; int point_cnt; gl.glClear( GL_COLOR_BUFFER_BIT ); switch ( mode ) { case MODE_DONE: mode=MODE_DEFINE; donePlaceing(); repaint(); break; case MODE_CLR: mode=MODE_DEFINE; clear(); repaint(); break; case MODE_DEFINE: /* draw grid */ gl.glColor3f( 0.6f, 0.5f, 0.5f ); gl.glBegin( GL_LINES ); int width = getSize().width; int height = getSize().height; for ( i = 0 ; i < width ; i += 10 ) { for ( j = 0 ; j < height ; j += 10 ) { gl.glVertex2i( 0, j ); gl.glVertex2i( width, j ); gl.glVertex2i( i, height ); gl.glVertex2i( i, 0 ); } } gl.glEnd( ); gl.glColor3f( 1.0f, 1.0f, 0.0f ); for ( i = 0 ; i <= contour_cnt ; i++ ) { point_cnt = contours[i].point_cnt; gl.glBegin( GL_LINES ); switch ( point_cnt ) { case 0: break; case 1: gl.glVertex2fv( contours[i].p[0] ); gl.glVertex2fv( contours[i].p[0] ); break; case 2: gl.glVertex2fv( contours[i].p[0] ); gl.glVertex2fv( contours[i].p[1] ); break; default: --point_cnt; for ( j = 0 ; j < point_cnt ; j++ ) { gl.glVertex2fv( contours[i].p[j] ); gl.glVertex2fv( contours[i].p[j+1] ); } if ( contours[i].p[j+1][0] == -1 ) { gl.glVertex2fv( contours[i].p[0] ); gl.glVertex2fv( contours[i].p[j] ); } break; } gl.glEnd(); } // gl.glFinish(); break; case MODE_TESSELATE: mode=MODE_TESSELATED; tesse(); glj.gljCheckGL(); repaint(); break; case MODE_TESSELATED: /* draw triangles */ gl.glColor3f( 0.7f, 0.7f, 0.0f ); gl.glCallList( list_start ); gl.glLineWidth( 2.0f ); gl.glCallList( list_start + 1 ); gl.glLineWidth( 1.0f ); // gl.glFlush(); glj.gljCheckGL(); break; } gl.glColor3f( 1.0f, 1.0f, 0.0f ); if(!isAnApplet && doSnapshot) { doSnapshot=false; textgrab.grabPixels(GL_BACK, 0, 0, cvsGetWidth(), cvsGetHeight()); textgrab.write2File("tessdemo.tga"); } /* For your animation dutys ;-) */ glj.gljSwap(); glj.gljCheckGL(); glj.gljFree(); } public void clear( ) { contour_cnt = 0; contours[0].point_cnt = 0; triangle_cnt = 0; gl.glDeleteLists( list_start, 2 ); list_start = 0; } public void reshape(int w, int h) { gl.glViewport( 0, 0, w, h ); gl.glMatrixMode( GL_PROJECTION ); gl.glLoadIdentity(); gl.glOrtho( 0.0, (double)w, 0.0, (double)h, -1.0, 1.0 ); gl.glMatrixMode( GL_MODELVIEW ); gl.glLoadIdentity(); } public String usage( ) { return "Use left mouse button to place vertices.\n" + "Select done from the pop-up menu,\n"+ "if you are done with placing vertices.\n"+ "Select tesselate from the pop-up menu.\n"; } // Methods required for the implementation of MouseListener public void mouseEntered(MouseEvent evt) { } public void mouseExited(MouseEvent evt) { } public void mousePressed(MouseEvent evt) { if (!menu_showing) { if ((evt.getModifiers() & evt.BUTTON3_MASK) != 0) { menu_showing = true; menu.show(this,evt.getX(),evt.getY()); } } else { menu_showing = false; } } public void mouseReleased(MouseEvent evt) { } // Method required for the implementation of ActionListener public void actionPerformed(ActionEvent evt) { String c = evt.getActionCommand(); if (c.equals(MENU_TESS)) { mode=MODE_TESSELATE; } else if (c.equals(MENU_CLR)) { mode=MODE_CLR; } else if (c.equals(MENU_DONE)) { mode=MODE_DONE; } else if (c.equals(MENU_SNAPSHOT)) { doSnapshot=true; } if (menu_showing) { menu_showing = false; } repaint(); } } }