How can I represent a coordinate grid in Delphi? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T21:18:57Zhttp://stackoverflow.com/feeds/question/1081088http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081088/how-can-i-represent-a-coordinate-grid-in-delphi1How can I represent a coordinate grid in Delphi?Mason Wheeler2009-07-03T23:00:45Z2009-07-06T18:16:41Z
<p>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, the following program gives a range check error while trying to print:</p>
<pre><code>program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils;
{$R+}
procedure play;
var
grid: array of array of boolean;
x, y: integer;
begin
try
setLength(grid, 3, 8);
grid[1, 5] := true;
for y := low(grid) to high(grid) do
begin
for x := low(grid[y]) to high(grid[y]) do
begin
if grid[x, y] then
write('X')
else write('.');
end;
writeln;
end;
readln;
except
on E:Exception do
Writeln(E.Classname, ': ', E.Message);
end;
end;
begin
play;
end.
</code></pre>
<p>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 try to change the shape of the grid by saying setLength(grid, 3, 8); then the assignment on the next line gives a range check error. I end up having to write <em>all</em> of my coordinates backwards, and any time I forget they're backwards, bad things end up happening in the program.</p>
<p>Does anyone know any tricks to make the coordinate order work intuitively?</p>
http://stackoverflow.com/questions/1081088/how-can-i-represent-a-coordinate-grid-in-delphi/1081095#10810951Answer by Stefan Kendall for How can I represent a coordinate grid in Delphi?Stefan Kendall2009-07-03T23:04:58Z2009-07-03T23:04:58Z<p>[y, x] is common and standard array access across most (all?) programming languages. It will be confusing for anyone looking at your code if you do it otherwise.</p>
http://stackoverflow.com/questions/1081088/how-can-i-represent-a-coordinate-grid-in-delphi/1081426#10814261Answer by Argalatyr for How can I represent a coordinate grid in Delphi?Argalatyr2009-07-04T03:27:50Z2009-07-04T03:27:50Z<p>I'd say that the standard representation isn't only consistent with general programming convention, <strong>it's consistent with graphing in general</strong>. Plot [1,4] on graph paper and you'll get the same thing as in your second (actual result) example, with the exception that the y axis is flipped in screen coordinates, but you're not complaining about that. </p>
<p>More specifically, the x axis is consistently horizontal, and the y axis is consistently vertical. That's what your example shows. It's not reversed.</p>
<p>I'd say just get used to it.</p>
http://stackoverflow.com/questions/1081088/how-can-i-represent-a-coordinate-grid-in-delphi/1081549#10815494Answer by Argalatyr for How can I represent a coordinate grid in Delphi?Argalatyr2009-07-04T05:06:16Z2009-07-06T18:16:41Z<p>You just need to give the proper bounds in the <strong>for</strong> statements. It's important to pay careful attention when applying the <strong>low</strong> and <strong>high</strong> functions to multi-dimensional arrays. For the current example (a 2-dimensional array), low(grid) and high(grid) will return the limits on the first dimension (row), whereas low(grid[0]) and high(grid[0]) will return the limits on the first column (<em>assuming it exists</em>). Note the changed <strong>for</strong> limits below:</p>
<pre><code>program Play_console;
{$APPTYPE CONSOLE}
uses
SysUtils;
{$R+}
procedure play;
var
grid: array of array of boolean;
x, y: integer;
begin
try
setLength(grid, 3, 8);
grid[1, 5] := true;
for y := low(grid[0]) to high(grid[0]) do
begin
for x := low(grid) to high(grid) do
begin
if grid[x, y] then
write('X')
else write('.');
end;
writeln;
end;
readln;
except
on E:Exception do
Writeln(E.Classname, ': ', E.Message);
end;
end;
begin
play;
end.
</code></pre>
<p>I tested this and it seems to do exactly what you want.</p>