PHP Hex Map Graphics

This PHP code uses the GD functions to create hex map images (eg. for wargames).

Leland on GitHub

Features:

Known Issues

The code has ugly styling (tabs, odd spacing, no optional braces) - sorry, I was young(er) and stupid(er).

There’s a fair amount of temporal coupling in there - functions that you can’t call before other functions, etc. I hadn’t heard of the command pattern or closures yet.

{.alignnone .size-full .wp-image-1395 .content width=”191” height=”161”}

There’s a bug in the ‘circle’ shape (that the following code exercises):

` `{lang=”php”}

require ‘class_hex_image.php’;

$radius = 3; $map = new Hex_image; $map->set_color(‘bg’, 255, 255, 255); $map->set_l(20); $map->set_shape(‘circle’, $radius); $map->start(); for($x = 1; $x <= $map->xsize; $x++) { for($y = 1; $y <= $map->ysize; $y++) { $map->text($x, $y, ‘black’, $map->steps($x, $y, $radius, $radius)); // nice for getting a feel for coordinates //$map->text($x, $y, ‘black’, “$x,$y”); } }

header(‘Content-Type: image.png’); $map->finish(); // calls imagepng()

?>

Future

One of the guys in #bbg on irc,freenode.net is building a browser-based game with a hex map and I remembered this code was squirreled away somewhere on my hard drive. I have no plans to fix, improve, or in any way maintain this code. I figure I may as well release it so someone can do something with it.

License

I release this code to the public domain. You may use it for any purpose with or without attribution. It would be polite to mention my name and let me know you come up with, but it’s not at all required.