Serialized Form

  • Package <Unnamed>

    • Class maze

      class maze extends mazebase implements Serializable
    • Class mazebase

      class mazebase extends JFrame implements Serializable
      • Serialized Fields

        • ah
          int ah
        • animatedgif
          Image animatedgif
        • autodelay
          boolean autodelay
          If set to true, will automatically delay by value dtime at end of calls to drawdot(int,int)
        • 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
          The color of the graphical circle drawn by default by drawdot(int,int)
        • dtime
          int dtime
          The approximate number of milliseconds delayed in calls to drawdot(int,int) if autodelay is set to true
        • 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
          The color of text messages that are displayed on the maze by drawMessage(java.lang.String)
        • 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
          If set to true, will try to load animated gif from filename gifname, which will be displayed by drawdot(int,int)
        • 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.