-
ah
int ah
-
animatedgif
Image animatedgif
-
autodelay
boolean autodelay
-
aw
int aw
-
bh
int bh
the height in pixels of graphical square representing a maze coordinate
-
bw
int bw
the width in pixels of graphical square representing a maze coordinate
-
dg
Graphics dg
-
dotcolor
Color dotcolor
-
dtime
int dtime
-
g
Graphics g
-
g2
Graphics g2
-
gifname
String gifname
The path-name of the gif/jpeg file that replaces a circle if
usegif
is set to true
-
M
int[][] M
The array for the maze is declared and initialized in the superclass. This
variable should be not set in
customize()
-
mheight
int mheight
The number of rows of the maze 2D array.
This number should be odd in order for the maze to have a border. The default value is 41.
-
mwidth
int mwidth
The number of columns of the maze 2D array.
This number should be odd in order for the maze to have a border. The default value is 41.
-
pathcolor
Color pathcolor
The color of maze "paths", or M[row][column] values that are non-zero
-
pencolor
Color pencolor
-
screen1
Image screen1
-
screen2
Image screen2
-
showvalue
boolean showvalue
If set to true, the
drawblock(int,int)
function will display the values of the maze matrix that are non-zero
-
startdigx
int startdigx
Starting x coordinate of maze
-
startdigy
int startdigy
Starting y coordinate of maze: the mazebase superclass will call
digout(startdigy,startdigx)
-
usegif
boolean usegif
-
wallcolor
Color wallcolor
The color of maze "walls", or M[row][column] values that are zero
-
yoff
int yoff
"y-offset", which is required on some systems that automatically displays a title bar for every window.