Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (416)
games submitted by our members
Games in WIP (306)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Inserting Text into a "Spiral" program  (Read 527 times)
0 Members and 1 Guest are viewing this topic.
Offline nklindsay

Junior Newbie




Java games rock!


« Posted 2004-11-02 01:08:15 »

Hi there,

I'm doing a program that shows both points and text in a colored-spiral:

Now I'm trying to get letters/text to alternate with the points  in the spiral. Problem is how do I set this up? How do I get text to go into the spiral along with the points?

Here is the code, just copy and paste, then run to see how it works. Certain code I commented out in regards to using "String" and "text" and it wasn't really working.

Any suggestions are great. PLEASE!!!

----

import java.awt.*;

import java.awt.event.*;



import net.java.games.jogl.*;

import net.java.games.jogl.util.*;


//Color-Blended Five-Sided Polygon Program
public class Color

{

 public static void main(String[] args)

 {

   Frame frame = new Frame("Spiral");

   GLCanvas canvas = GLDrawableFactory.getFactory().createGLCanvas(new GLCapabilities());

   canvas.addGLEventListener(new Renderer());

   frame.add(canvas);

   frame.setSize(400, 300);

   

   frame.addWindowListener(new WindowAdapter()

   {

     public void windowClosing(WindowEvent e)

     {

       

       System.exit(0);

     }

   });

   frame.show();

   canvas.requestFocus();

   

 }

 

 static class Renderer implements GLEventListener, KeyListener

 {

   

public void display(GLDrawable gLDrawable)

   {

    final GL gl = gLDrawable.getGL();

    final GLU glu = gLDrawable.getGLU();
   
    // final GLUT glut = new GLUT();

   

   

    float [][] CLUT ={{1.0f,0.0f,0.0f},{1.0f,0.5f,0.0f},{1.0f,1.0f,0.0f},

           {0.0f,1.0f,0.0f},{0.0f,0.0f,1.0f},{1.0f,0.0f,1.0f},

           {0.5f,0.0f,0.5f}, {1.0f,0.0f,0.5f}};
           
   
    // String [] fonts = { "T", "B","R", "P","H","F"};
     
           

           

     gl.glClear (GL.GL_COLOR_BUFFER_BIT);  // Set display window to color.

       gl.glMatrixMode (GL.GL_MODELVIEW);

     gl.glLoadIdentity();

     

     double x = 0.0, y = 0.0, r=0.0, rad,ang=0.0;

     float point = 0.1f;
    //float text1 = 0.1f;
    //float text2 = 0.1f;

     
     rad =(Math.PI/180.0);

     

        for (int i=0; i<80; i++){

           

           gl.glPointSize(point);
           //gl.glTextSize(text1,text2);
          // gl.glRasterPos2d(x,y); // set position
           //glut.glutBitmapString(gl, i+2, fonts[i%8]);

           

           x = r*Math.cos(rad*ang);

           y = r*Math.sin(rad*ang);

             

                 gl.glBegin(GL.GL_POINTS);    

                 gl.glColor3fv(CLUT[i%8]);

                 gl.glVertex2f((float)x,(float)y);  
                 
                 

                 gl.glEnd();

                 r+=3.0;

                 ang+=10.0;

                 point += 0.3f;

           }                

   

   }

public void init(GLDrawable gLDrawable)

   {

     final GL gl = gLDrawable.getGL();

     final GLU glu = gLDrawable.getGLU();

     

     gl.glMatrixMode (GL.GL_PROJECTION);  

     gl.glClearColor (0.0f, 0.0f, 0.0f, 0.0f);   //set background to white

     glu.gluOrtho2D (-250.0, 250.0, -250, 250.0);  // define drawing area

     gLDrawable.addKeyListener(this);

   }



    public void displayChanged(GLDrawable gLDrawable, boolean modeChanged, boolean deviceChanged)

   {

   }

   

      public void reshape(GLDrawable gLDrawable, int x, int y, int width, int height)

   {

     

   }



   

   public void keyPressed(KeyEvent e)

   {

     if (e.getKeyCode() == KeyEvent.VK_ESCAPE)

       System.exit(0);

   }

     

   public void keyReleased(KeyEvent e) {}

   

   public void keyTyped(KeyEvent e) {}

     }
}


----

Help! Again, any suggestions will be great! Thanks!



Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
NegativeZero (5 views)
2013-06-19 03:31:52

NegativeZero (7 views)
2013-06-19 03:24:09

Jesse_Attard (13 views)
2013-06-18 22:03:02

HeroesGraveDev (57 views)
2013-06-15 23:35:23

Vermeer (57 views)
2013-06-14 20:08:06

davedes (56 views)
2013-06-14 16:03:55

alaslipknot (50 views)
2013-06-13 07:56:31

Roquen (71 views)
2013-06-12 04:12:32

alaslipknot (56 views)
2013-06-10 19:30:18

HeroesGraveDev (73 views)
2013-06-09 04:36:03
Smoothing Algorithm Question
by UprightPath
2013-05-28 02:58:26

Smoothing Algorithm Question
by UprightPath
2013-05-28 02:57:33

Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!