show/hide this revision's text 2 added 990 characters in body

I'm trying to represent a two-dimensional coordinate grid with a two-dimensional array. Problem is, declaring the array flips the X and Y coordinates because of the way Delphi allocates the array. This makes it difficult to read elements of the array. For example, if I declare the following program gives a 5x5 range check error while trying to print:

program Project1;{$APPTYPE CONSOLE}  SysUtils;procedure play;   gridand place a value in grid[1: array of array of boolean;   x, 4]y: integer;   setLength(grid, I'd expect it 3, 8);   grid[1, 5] := true;   for y := low(grid) to look something like thishigh(grid) do      for x := low(grid[y]) to high(grid[y]) do         if grid[x, y] then            write('X')         else write('.');      end;      writeln;   end;   readln;    on E:Exception do      Writeln(E.Classname, ': ', E.Message);  end;   play;

I have to write the index backwards (if grid[y, x] then) to keep that from happening, but then the grid prints out sideways, with the X shown at (5, 1) instead of at (1, 5). If I were try to output change the contents shape of the grid :

...X.by saying setLength(grid, 3, 8); then the assignment on the next line gives a range check error.  ....

InsteadI end up having to write all of my coordinates backwards, and any time I get

.....

with forget they're backwards, bad things end up happening in the value displaying at (4, 1)program.

show/hide this revision's text 1

How can I represent a coordinate grid in Delphi?

I'm trying to represent a two-dimensional coordinate grid with a two-dimensional array. Problem is, declaring the array flips the X and Y coordinates because of the way Delphi allocates the array. For example, if I declare a 5x5 grid and place a value in grid[1, 4], I'd expect it to look something like this, if I were to output the contents of the grid:

...X.
.....
.....
.....
.....

Instead, I get

.....
.....
.....
X....
.....

with the value displaying at (4, 1).

Does anyone know any tricks to make the coordinate order work intuitively?