Re: [stella] Random maze

Subject: Re: [stella] Random maze
From: "Paul Slocum" <paul-stella@xxxxxxxxxxxxxx>
Date: Fri, 12 Sep 2003 14:27:47 -0500

Yes - Maze Craze et al... (Your biggest hurdle is not the display, it's the RAM required to store your maze data. Maze Craze's maze is 23 rows high, or a minimum of 115 bytes RAM which is a pretty good chunk of your available RAM...)

It only requires half of that much RAM. You start off with sort of a pegboard like this:


X X X X X X X

X X X X X X X

X X X X X X X

Then you fill in the walls to make a maze:

XXXXXXX X XXX
  X   X X   X
X X XXX XXX X
X
XXXXXXXXXXXXX

So you only have to store have of the squares. :oD

-Paul

----------------------------------------------------------------------------------------------
Archives (includes files) at http://www.biglist.com/lists/stella/archives/
Unsub & more at http://www.biglist.com/lists/stella/


Current Thread