Given the following code :

private void drawMaze(PaintEvent e)
{
        Graph maze = new Graph();
        maze.generateMaze(25);

        int i = 0;
        int level = 25;

    e.gc.setAntialias(SWT.ON);
    e.gc.setBackground(new Color(e.display, 150, 150, 150));
    e.gc.setLineWidth(12);

    while (i < level)
    {
        Connector connector = maze.getEdgeConnectorByIndex(i);
        if (connector instanceof Door)
            {
               Room room1 = ((Door)connector).getFirstRoom();
               Room room2 = ((Door)connector).getSecondRoom();
               int x = room1.getXcoordinate()+10;
               int y = room1.getYcoordinate()+10;

               System.out.println(x);
               System.out.println(y);

               e.gc.fillRectangle(x,y,100,79);
               e.gc.setBackground(e.display.getSystemColor(SWT.COLOR_BLUE));
               e.gc.setForeground(e.display.getSystemColor(SWT.COLOR_GREEN));  
               e.gc.drawLine(x,y, 280+100,20); 

            }
        i++;
    }

}

class BasicShapes

public class BasicShapes {



    private Shell shell;

    public BasicShapes(Display display) {

        shell = new Shell(display);

        shell.addPaintListener(new ExmaplePaingListener());

        shell.setText("Basic shapes");
        shell.setSize(1000, 700);
        shell.setLocation(50, 50);
        shell.open();

        while (!shell.isDisposed()) {
            if (!display.readAndDispatch()) {
                display.sleep();
            }
        }
    }

    private class ExmaplePaingListener implements PaintListener {

        public void paintControl(PaintEvent e) {

            // drawRectangles(e);
            drawMaze(e);
            e.gc.dispose();
        }
    }



...

}

I need to draw maze , with separators as Door/Wall between each two cells. In the method drawMaze() , I first create a graph G=(V,E) with vertices & edges (vertices=rooms , edges=Door/Wall) and then I want to use it .

It the while loop , I run the loop by the number of edges , and each time I get the coordinates of two rooms (in the x,y plane) and I want to print the 1ST room , with the connector (wall/door) with the other room , but every time the first room is printed on the other (and for the rest of the edges also).

How can I fix it ?

Regards,Ron

link|improve this question

can you post some output, and you would actually like it to be? You can draw a maze like this: for each Room { drawRect(room.x,room.y,10,10); } – Adrian Jan 23 at 4:02
@Adrian , that's what I'm doing , I run the the loop for X times and print out for each room its rectangle .But the code you posted does the same thing , just without the insides of the rectangle . – ron Jan 23 at 4:14
I've been drawing mazes like this for a long time. I don't see how this is drawing all rectangles on top of each other :/ – Adrian Jan 23 at 4:16
Here is an example : imageshack.us/photo/my-images/840/ffffvd.gif – ron Jan 23 at 4:18
are the red lines the problem because they are on top of the black ones? – Adrian Jan 23 at 4:21
show 6 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.