spring로 검색한 결과 :: 시소커뮤니티[SSISO Community]
 
SSISO 카페 SSISO Source SSISO 구직 SSISO 쇼핑몰 SSISO 맛집
추천검색어 : JUnit   Log4j   ajax   spring   struts   struts-config.xml   Synchronized   책정보   Ajax 마스터하기   우측부분

회원가입 I 비밀번호 찾기


SSISO Community검색
SSISO Community메뉴
[카페목록보기]
[블로그등록하기]  
[블로그리스트]  
SSISO Community카페
블로그 카테고리
정치 경제
문화 칼럼
비디오게임 스포츠
핫이슈 TV
포토 온라인게임
PC게임 에뮬게임
라이프 사람들
유머 만화애니
방송 1
1 1
1 1
1 1
1 1
1

spring로 검색한 결과
등록일:2018-05-29 13:02:39
작성자:
제목:Hexagonal Grids


Hexagonal grids are used in some games but aren’t quite as straightforward or common as square grids. I’ve been collecting hex grid resources for over 20 years, and wrote this guide to the most elegant approaches that lead to the simplest code, largely based on the guides by Charles Fu and Clark Verbrugge. I’ll describe the various ways to make hex grids, the relationships between them, as well as some common algorithms. Most parts of this page are interactive.
  1. Angles, size, spacing
  2. Coordinate systems
  3. Conversions
  4. Neighbors
  5. Distances
  6. Line drawing
  7. Range
  8. Rotation
  9. Rings
  10. Field of view
  11. Hex to pixel
  12. Pixel to hex
  13. Rounding
  14. Map storage
  15. Wraparound maps
  16. Pathfinding
  17. More reading

The code samples on this page are written in pseudo-code; they’re meant to be easy to read and understand. The implementation guide has code in C++, Javascript, C#, Python, Java, Typescript, and more.


#Geometry

centercornerside flat pointy

Hexagons are 6-sided polygons. Regular hexagons have all the sides the same length. I’ll assume all the hexagons we’re working with here are regular. The typical orientations for hex grids are vertical columns () and horizontal rows ().

Hexagons have 6 sides and 6 corners. Each side is shared by 2 hexagons. Each corner is shared by 3 hexagons. For more about centers, sides, and corners, see my article on grid parts (squares, hexagons, and triangles).

Angles#

In a regular hexagon the interior angles are 120°. There are six “wedges”, each an equilateral triangle with 60° angles inside. Each corner is size units away from the center. In code:

function pointy_hex_corner(center, size, i):
    var angle_deg = 60 * i - 30°
    var angle_rad = PI / 180 * angle_deg
    return Point(center.x + size * cos(angle_rad),
                 center.y + size * sin(angle_rad))
30°60°90°120°150°180°210°240°270°300°330°60°60°60°120° flat pointy

To fill a hexagon, gather the polygon vertices at hex_corner(…, 0) through hex_corner(…, 5). To draw a hexagon outline, use those vertices, and then draw a line back to hex_corner(…, 0).

The difference between the two orientations is a rotation, and that causes the angles to change: angles are 0°, 60°, 120°, 180°, 240°, 300° and angles are 30°, 90°, 150°, 210°, 270°, 330°. Note that the diagrams on this page use the y axis pointing down (angles increase clockwise); you may have to make some adjustments if your y axis points up (angles increase counterclockwise).

Size and Spacing#

Next we want to put several hexagons together. In the pointy orientation, a hexagon has width w = sqrt(3) * size and height h = 2 * size. The sqrt(3) comes from sin(60°).

0w¼w½w¾w1w1¼w1½w1¾w2w2¼w2½w0h¼h½h¾h1h1¼h1½h1¾h2h width height horizontal spacing vertical spacing flat pointy

The horizontal distance between adjacent hexagon centers is w. The vertical distance between adjacent hexagon centers is h * 3/4.

Some games use pixel art for hexagons that does not match an exactly regular polygon. The angles and spacing formulas I describe in this section won’t match the sizes of your hexagons. The rest of the article, describing algorithms on hex grids, will work even if your hexagons are stretched or shrunk a bit, and I explain on the implementation page how to handle stretching.

#Coordinate Systems

Now let’s assemble hexagons into a grid. With square grids, there’s one obvious way to do it. With hexagons, there are multiple approaches. I like cube coordinates for algorithms and axial or doubled for storage.

Offset coordinates#

The most common approach is to offset every other column or row. Columns are named col (q). Rows are named row (r). You can either offset the odd or the even column/rows, so the horizontal and vertical hexagons each have two variants.

0, 00, 10, 20, 30, 40, 50, 61, 01, 11, 21, 31, 41, 51, 62, 02, 12, 22, 32, 42, 52, 63, 03, 13, 23, 33, 43, 53, 64, 04, 14, 24, 34, 44, 54, 65, 05, 15, 25, 35, 45, 55, 66, 06, 16, 26, 36, 46, 56, 6
“odd-r” horizontal layout
shoves odd rows right
0, 00, 10, 20, 30, 40, 50, 61, 01, 11, 21, 31, 41, 51, 62, 02, 12, 22, 32, 42, 52, 63, 03, 13, 23, 33, 43, 53, 64, 04, 14, 24, 34, 44, 54, 65, 05, 15, 25, 35, 45, 55, 66, 06, 16, 26, 36, 46, 56, 6
“even-r” horizontal layout
shoves even rows right
0, 00, 10, 20, 30, 40, 51, 01, 11, 21, 31, 41, 52, 02, 12, 22, 32, 42, 53, 03, 13, 23, 33, 43, 54, 04, 14, 24, 34, 44, 55, 05, 15, 25, 35, 45, 56, 06, 16, 26, 36, 46, 57, 07, 17, 27, 37, 47, 5
“odd-q” vertical layout
shoves odd columns down
0, 00, 10, 20, 30, 40, 51, 01, 11, 21, 31, 41, 52, 02, 12, 22, 32, 42, 53, 03, 13, 23, 33, 43, 54, 04, 14, 24, 34, 44, 55, 05, 15, 25, 35, 45, 56, 06, 16, 26, 36, 46, 57, 07, 17, 27, 37, 47, 5
“even-q” vertical layout
shoves even columns down

Cube coordinates#

Another way to look at hexagonal grids is to see that there are three primary axes, unlike the two we have for square grids. There’s an elegant symmetry with these.

Let’s take a cube grid and slice out a diagonal plane at x + y + z = 0. This is a weird idea but it helps us make hex grid algorithms simpler. In particular, we can reuse standard operations from cartesian coordinates: adding coordinates, subtracting coordinates, multiplying or dividing by a scalar, and distances.

Notice the three six hex grid directions are halfway between two of the cube axes. We’ll see this in the neighbors section, where moving along one of the six hex grid directions involves changing two of the coordinates.

Because we already have algorithms for square and cube grids, using cube coordinates allows us to adapt those algorithms to hex grids. I will be using this system for most of the algorithms on the page. To use the algorithms with another coordinate system, I’ll convert to cube coordinates, run the algorithm, and convert back.

+z-x+y-z+x-y

Study how the cube coordinates work on the hex grid. Selecting the hexes will highlight the cube coordinates corresponding to the three axes.

-30+3-3+1+2-3+2+1-3+30-2-1+3-20+2-2+1+1-2+20-2+3-1-1-2+3-1-1+2-10+1-1+10-1+2-1-1+3-20-3+30-2+20-1+1xzy0+1-10+2-20+3-3+1-3+2+1-2+1+1-10+10-1+1+1-2+1+2-3+2-3+1+2-20+2-1-1+20-2+2+1-3+3-30+3-2-1+3-1-2+30-3 +x +z +y -x -z -y flat pointy
  1. Each direction on the cube grid corresponds to a line on the hex grid. Try highlighting a hex with z at 0, 1, 2, 3 to see how these are related. The row is marked in blue. Try the same for x (green) and y (purple).
  2. Each direction on the hex grid is a combination of two directions on the cube grid. For example, northwest on the hex grid lies between the +y and -z, so every step northwest involves adding 1 to y and subtracting 1 from z.

The cube coordinates are a reasonable choice for a hex grid coordinate system. The constraint is that x + y + z = 0 so the algorithms must preserve that. The constraint also ensures that there’s a canonical coordinate for each hex.

There are many different valid cube hex coordinate systems. Some of them have constraints other than x + y + z = 0. I’ve shown only one of the many systems. You can also construct cube coordinates with x-y, y-z, z-x, and that has its own set of interesting properties, which I don’t explore here.

“But Amit!” you say, “I don’t want to store 3 numbers for coordinates. I don’t know how to store a map that way.”

Axial coordinates#

The axial coordinate system, sometimes called “trapezoidal” or “oblique” or “skewed”, is built by taking two of the three coordinates from a cube coordinate system. Since we have a constraint x + y + z = 0, there’s some redundancy, and we don’t need to store all three coordinates. This diagram is the same as the previous one, except I don’t show y:

-30-3+1-3+2-3+3-2-1-20-2+1-2+2-2+3-1-2-1-1-10-1+1-1+2-1+30-30-20-1qr0+10+20+3+1-3+1-2+1-1+10+1+1+1+2+2-3+2-2+2-1+20+2+1+3-3+3-2+3-1+30 +q +r -q -r flat pointy

There are many choices of cube coordinate system, and many choices of axial coordinate system. I’m not going to show all of the combinations in this guide. I’ve chosen q for “column” = x and r as “row” = z. This choice is arbitary, as you can rotate and flip the diagrams to make many different assignments of ±x,±y,±z to q,r.

The advantage of this system over offset grids is that the algorithms are cleaner when you can use add, subtract, multiply, and divide on hex coordinates. The disadvantage of this system is that storing a rectangular map is a little weird; see the map storage section for ways to handle that. In my projects, I name the axes q, r, s so that I have the constraint q + r + s = 0, and then I can calculate s = -q - r when I need the third coordinate for algorithms that work better with cube coordinates.

Doubled coordinates#

Although I recommend axial/cube coordinates, if you are sticking to offset coordinates, consider the doubled variant. It makes many of the algorithms easier to implement. Instead of alternation, the doubled coordinates double either the horizontal or vertical step size. It has a constraint (col + row) % 2 == 0. In the horizontal (pointy top hex) layout it increases the column by 2 each hex; in the vertical (flat top hex) layout it increases the row by 2 each hex. This allows the in-between values for the hexes that are halfway in between:

0, 02, 04, 06, 08, 010, 012, 01, 13, 15, 17, 19, 111, 113, 10, 22, 24, 26, 28, 210, 212, 21, 33, 35, 37, 39, 311, 313, 30, 42, 44, 46, 48, 410, 412, 41, 53, 55, 57, 59, 511, 513, 50, 62, 64, 66, 68, 610, 612, 6
“double-width” horizontal layout
doubles column values
0, 00, 20, 40, 60, 80, 101, 11, 31, 51, 71, 91, 112, 02, 22, 42, 62, 82, 103, 13, 33, 53, 73, 93, 114, 04, 24, 44, 64, 84, 105, 15, 35, 55, 75, 95, 116, 06, 26, 46, 66, 86, 107, 17, 37, 57, 77, 97, 11
“double-height” horizontal layout
doubles row values

I haven’t found much information about this system — tri-bit.com called it interlaced, rot.js calls it double width, and this paper calls it rectangular. I’m not sure what to call it. Tamás Kenéz sent me the core algorithms (neighbors, distances, etc.). If you have any references, please send them to me.

Comparison#

What do I recommend?

OffsetDoubledAxialCube
Pointy rotationevenr, oddrdoublewidthaxialcube
Flat rotationevenq, oddqdoubleheight
Other rotationsnoyes
Vector operations (add, subtract, scale)noyesyesyes
Array storagerectangularno*rhombus*no*
Hash storageany shapeany shape
Hexagonal symmetrynononoyes
Easy algorithmsfewsomemostall

* rectangular maps require an adapter, shown in the map storage section

My recommendation: if you are only going to use rectangular maps, and never rotate the map, consider the doubled or offset coordinates, as they will line up with your map better than axial or cube. In all other cases, use axial as the primary system, and calculate the third cube coordinate only for those algorithms where cube is easier to work with.

#Coordinate conversion

It is likely that you will use axial or offset coordinates in your project, but many algorithms are simpler to express in cube coordinates. Therefore you need to be able to convert back and forth.

Axial coordinates#

Axial coordinates are closely connected to cube coordinates. Axial discards the third coordinate. Cube calculates the third coordinate from the other two.

-20+2-2+1+1-2+20-1-1+2-10+1-1+10-1+2-10-2+20-1+1xzy0+1-10+2-2+1-2+1+1-10+10-1+1+1-2+2-20+2-1-1+20-2-20-2+1-2+2-1-1-10-1+1-1+20-20-1qr0+10+2+1-2+1-1+10+1+1+2-2+2-1+20 flat pointy
function cube_to_axial(cube):
    var q = cube.x
    var r = cube.z
    return Hex(q, r)

function axial_to_cube(hex):
    var x = hex.q
    var z = hex.r
    var y = -x-z
    return Cube(x, y, z)

Offset coordinates#

Determine which type of offset system you use; *-r are pointy top; *-q are flat top. The conversion is different for each.

function cube_to_oddr(cube):
    var col = cube.x + (cube.z - (cube.z&1)) / 2
    var row = cube.z
    return OffsetCoord(col, row)

function oddr_to_cube(hex):
    var x = hex.col - (hex.row - (hex.row&1)) / 2
    var z = hex.row
    var y = -x-z
    return Cube(x, y, z)
-1-2+3-1-1+2-20+2-2+1+1-3+2+10-2+20-1+1-10+1-1+10-2+20+1-2+1+1-10xzy0+1-1-1+2-1+2-20+2-1-1+10-1+1+1-20+2-2+3-2-1+3-1-2+20-2+2+1-3+1+2-3-2, -2-2, -1-2, 0-2, +1-2, +2-1, -2-1, -1-1, 0-1, +1-1, +20, -20, -1col, row0, +10, +2+1, -2+1, -1+1, 0+1, +1+1, +2+2, -2+2, -1+2, 0+2, +1+2, +2

Implementation note: I use a&1 (bitwise and) instead of a%2 (modulo) to detect whether something is even (0) or odd (1), because it works with negative numbers too. See a longer explanation on my implementation notes page.

Doubled coordinates#

function doubleheight_to_cube(hex):
    var x = hex.col
    var z = (hex.row - hex.col) / 2
    var y = -x-z
    return Cube(x, y, z)

function cube_to_doubleheight(cube):
    var col = cube.x
    var row = 2 * cube.z + cube.x
    return DoubledCoord(col, row)

function doublewidth_to_cube(hex):
    var x = (hex.col - hex.row) / 2
    var z = hex.row
    var y = -x-z
    return Cube(x, y, z)

function cube_to_doublewidth(cube):
    var col = 2 * cube.x + cube.z
    var row = cube.z
    return DoubledCoord(col, row)

It may also be useful to define conversion to/from offset coordinates.

#Neighbors

Given a hex, which 6 hexes are neighboring it? As you might expect, the answer is simplest with cube coordinates, still pretty simple with axial coordinates, and slightly trickier with offset coordinates. We might also want to calculate the 6 “diagonal” hexes.

Cube coordinates#

Moving one space in hex coordinates involves changing one of the 3 cube coordinates by +1 and changing another one by -1 (the sum must remain 0). There are 3 possible coordinates to change by +1, and 2 remaining that could be changed by -1. This results in 6 possible changes. Each corresponds to one of the hexagonal directions. The simplest and fastest approach is to precompute the permutations and put them into a table of Cube(dx, dy, dz) at compile time:

var cube_directions = [
    Cube(+1, -1, 0), Cube(+1, 0, -1), Cube(0, +1, -1), 
    
Cube(-1, +1, 0), Cube(-1, 0, +1), Cube(0, -1, +1), ] function cube_direction(direction): return cube_directions[direction] function cube_neighbor(cube, direction): return cube_add(cube, cube_direction(direction))
-10+1-1+100-1+1xzy0+1-1+1-10+10-1 flat pointy

Axial coordinates#

As before, we'll use the cube system as a starting point. Take the table of Cube(dx, dy, dz) and convert into a table of Hex(dq, dr):

var axial_directions = [
    Hex(+1, 0), Hex(+1, -1), Hex(0, -1), 
    
Hex(-1, 0), Hex(-1, +1), Hex(0, +1), ] function hex_direction(direction): return axial_directions[direction] function hex_neighbor(hex, direction): var dir = hex_direction(direction) return Hex(hex.q + dir.q, hex.r + dir.r)
-1, 0-1, +10, -1q, r0, +1+1, -1+1, 0 flat pointy

Offset coordinates#

With offset coordinates, the change depends on where in the grid we are. If we’re on an offset column/row then the rule is different than if we’re on a non-offset column/row.

As above, we’ll build a table of the numbers we need to add to col and row. However offset coordinates can’t be safely added and subtracted. Instead, the results are different for odd and even columns/rows, so we will need two separate lists of neighbors. Look at (1,1) on the grid map above and see how col and row change as you move in each of the six directions. Then do this again for (2,2). The tables and code are different for each of the four offset grid types, so pick a grid type to see the corresponding code.

var oddr_directions = [
    [[+1, 0], [ 0, -1], [-1, -1],
     
[-1, 0], [-1, +1], [ 0, +1]],

    [[+1, 0], [+1, -1], [ 0, -1],
     
[-1, 0], [ 0, +1], [+1, +1]],
] function oddr_offset_neighbor(hex, direction): var parity = hex.row & 1 var dir = oddr_directions[parity][direction] return OffsetCoord(hex.col + dir[0], hex.row + dir[1])
Pick a grid type:
-1, 0-1, +1-1, -1EVEN rowALL cols 0, +1 0, -1+1, 0-1, 0 0, +1 0, -1ODD rowALL cols+1, +1+1, -1+1, 0

Using the above lookup tables is the easiest way to to calculate neighbors. It’s also possible to derive these numbers, for those of you who are curious.

Doubled coordinates#

Unlike offset coordinates, the neighbors for doubled coordinates do not depend on which column/row we’re on. They’re the same everywhere, like axial and cube coordinates. Also unlike offset coordinates, we can safely add and subtract doubled coordinates, which makes them easier to work with than offset coordinates.

var doublewidth_directions = [
    [+1, +1], [+1, -1], [ 0, -2], 
    
[-1, -1], [-1, +1], [ 0, +2], ] function doublewidth_neighbor(hex, direction): var dir = doublewidth_directions[direction] return DoubledCoord(hex.col + dir.col, hex.col + dir.col)
Pick a grid type:
-1, -1-1, +1 0, -2 0, 0 0, +2+1, -1+1, +1

Diagonals#

Moving to a “diagonal” space in hex coordinates changes one of the 3 cube coordinates by ±2 and the other two by ∓1 (the sum must remain 0).

var cube_diagonals = [
    Cube(+2, -1, -1), Cube(+1, +1, -2), Cube(-1, +2, -1), 
    
Cube(-2, +1, +1), Cube(-1, -1, +2), Cube(+1, -2, +1), ] function cube_diagonal_neighbor(cube, direction): return cube_add(cube, cube_diagonals[direction])

As before, you can convert these into axial by dropping one of the three coordinates, or convert to offset/doubled by precalculating the results.

-10+1-1+100-1+1xzy0+1-1+1-10+10-1+2-1-1+1-2+1-1-1+2-2+1+1-1+2-1+1+1-2 flat pointy

#Distances

Cube coordinates#

In the cube coordinate system, each hexagon is a cube in 3d space. Adjacent hexagons are distance 1 apart in the hex grid but distance 2 apart in the cube grid. This makes distances simple. In a square grid, Manhattan distances are abs(dx) + abs(dy). In a cube grid, Manhattan distances are abs(dx) + abs(dy) + abs(dz). The distance on a hex grid is half that:

function cube_distance(a, b):
    return (abs(a.x - b.x) + abs(a.y - b.y) + abs(a.z - b.z)) / 2

An equivalent way to write this is by noting that one of the three coordinates must be the sum of the other two, then picking that one as the distance. You may prefer the “divide by two” form above, or the “max” form here, but they give the same result:

function cube_distance(a, b):
    return max(abs(a.x - b.x), abs(a.y - b.y), abs(a.z - b.z))

The maximum of the three coordinates is the distance. You can also use the max of abs(dx-dy), abs(dy-dz), abs(dz-dx) to figure out which of the 6 “wedges” a hex is in; see diagrams here.

-40+4-4+1+3-4+2+2-4+3+1-4+40-3-1+4-30+3-3+1+2-3+2+1-3+30-3+4-1-2-2+4-2-1+3-20+2-2+1+1-2+20-2+3-1-2+4-2-1-3+4-1-2+3-1-1+2-10+1-1+10-1+2-1-1+3-2-1+4-30-4+40-3+30-2+20-1+1xzy0+1-10+2-20+3-30+4-4+1-4+3+1-3+2+1-2+1+1-10+10-1+1+1-2+1+2-3+1+3-4+2-4+2+2-3+1+2-20+2-1-1+20-2+2+1-3+2+2-4+3-4+1+3-30+3-2-1+3-1-2+30-3+3+1-4+4-40+4-3-1+4-2-2+4-1-3+40-4 flat pointy

Xiangguo Li’s paper Storage and addressing scheme for practical hexagonal image processing. (DOI) gives a formula for Euclidean distance, which can be adapted to axial coordinates: sqrt(dq² + dr² + dq*dr).

Axial coordinates#

In the axial system, the third coordinate is implicit. Let’s convert axial to cube to calculate distance:

function hex_distance(a, b):
    var ac = axial_to_cube(a)
    var bc = axial_to_cube(b)
    return cube_distance(ac, bc)

If your compiler inlines axial_to_cube and cube_distance, it will generate this code:

function hex_distance(a, b):
    return (abs(a.q - b.q) 
          + abs(a.q + a.r - b.q - b.r)
          + abs(a.r - b.r)) / 2

There are lots of different ways to write hex distance in axial coordinates, but no matter which way you write it, axial hex distance is derived from the Mahattan distance on cubes. For example, the “difference of differences” described here results from writing a.q + a.r - b.q - b.r as a.q - b.q + a.r - b.r, and using “max” form instead of the “divide by two” form of cube_distance. They’re all equivalent once you see the connection to cube coordinates.

Offset coordinates#

As with axial coordinates, we’ll convert offset coordinates to cube coordinates, then use cube distance.

function offset_distance(a, b):
    var ac = offset_to_cube(a)
    var bc = offset_to_cube(b)
    return cube_distance(ac, bc)

We’ll use the same pattern for many of the algorithms: convert hex to cube, run the cube version of the algorithm, and convert any cube results back to hex coordinates (whether axial or offset). There are also more direct formulas for distances; see the rot.js manual for a formula in the “Odd shift” section.

Doubled coordinates#

Although converting doubled coordinates to cube coordinates works, there’s also a direct formula for distances, from the rot.js manual:

function doublewidth_distance(a, b):
    var dx = abs(a.col - b.col)
    var dy = abs(a.row - b.row)
    return dy + max(0, (dx-dy)/2)

function doubleheight_distance(a, b):
    var dx = abs(a.col - b.col)
    var dy = abs(a.row - b.row)
    return dx + max(0, (dy−dx)/2)

#Line drawing

How do we draw a line from one hex to another? I use linear interpolation for line drawing. Evenly sample the line at N+1 points, and figure out which hexes those samples are in.

flat pointy
  1. First we calculate N=10 to be the hex distance between the endpoints.
  2. Then evenly sample N+1 points between point A and point B. Using linear interpolation, each point will be A + (B - A) * 1.0/N * i, for values of i from 0 to N, inclusive. In the diagram these sample points are the dark blue dots. This results in floating point coordinates.
  3. Convert each sample point (float) back into a hex (int). The algorithm is called cube_round.

Putting these together to draw a line from A to B:

function lerp(a, b, t): # for floats
    return a + (b - a) * t

function cube_lerp(a, b, t): # for hexes
    return Cube(lerp(a.x, b.x, t), 
                lerp(a.y, b.y, t),
                lerp(a.z, b.z, t))

function cube_linedraw(a, b):
    var N = cube_distance(a, b)
    var results = []
    for each 0 ≤ i ≤ N:
        results.append(cube_round(cube_lerp(a, b, 1.0/N * i)))
    return results

More notes:

  • There are times when cube_lerp will return a point that’s exactly on the side between two hexes. Then cube_round will push it one way or the other. The lines will look better if it’s always pushed in the same direction. You can do this by adding an “epsilon” hex Cube(1e-6, 2e-6, -3e-6) to one or both of the endpoints before starting the loop. This will “nudge” the line in one direction to avoid landing on side boundaries.
  • The DDA Algorithm on square grids sets N to the max of the distance along each axis. We do the same in cube space, which happens to be the same as the hex grid distance.
  • The cube_lerp function needs to return a cube with float coordinates. If you’re working in a statically typed language, you won’t be able to use the Cube type but instead could define FloatCube, or inline the function into the line drawing code if you want to avoid defining another type.
  • You can optimize the code by inlining cube_lerp, and then calculating B.x-A.x, B.x-A.y, and 1.0/N outside the loop. Multiplication can be turned into repeated addition. You’ll end up with something like the DDA algorithm.
  • I use axial or cube coordinates for line drawing, but if you want something for offset coordinates, take a look at this article.
  • There are many variants of line drawing. Sometimes you’ll want “super cover”. Someone sent me hex super cover line drawing code but I haven’t studied it yet.
  • A paper from Yong-Kui, Liu, The Generation of Straight Lines on Hexagonal Grids, Computer Graphics Forum 12-1 (Feb 1993) (DOI), describes a variant of Bresenham’s line drawing algorithm for hexagonal grids.

#Movement Range

Coordinate range#

Given a hex center and a range N, which hexes are within N steps from it?

We can work backwards from the hex distance formula, distance = max(abs(x), abs(y), abs(z)). To find all hexes within N steps, we need max(abs(x), abs(y), abs(z)) ≤ N. This means we need all three to be true: abs(x) ≤ N and abs(y) ≤ N and abs(z) ≤ N. Removing absolute value, we get -N ≤ x ≤ +N and -N ≤ y ≤ +N and -N ≤ z ≤ +N. In code it’s a nested loop:

var results = []
for each -N ≤ x ≤ +N:
    for each -N ≤ y ≤ +N:
        for each -N ≤ z ≤ +N:
            if x + y + z = 0:
                results.append(cube_add(center, Cube(x, y, z)))

This loop will work but it’s somewhat inefficient. Of all the values of z we loop over, only one of them actually satisfies the x + y + z = 0 constraint on cubes. Instead, let’s directly calculate the value of z that satisfies the constraint:

var results = []
for each -N ≤ x ≤ +N:
    for each max(-N, -x-N) ≤ y ≤ min(+N, -x+N):
        var z = -x-y
        results.append(cube_add(center, Cube(x, y, z)))

This loop iterates over exactly the needed coordinates. In the diagram, each range is a pair of lines. Each line is an inequality (a half-plane). We pick all the hexes that satisfy all six inequalities.

-50+5-5+1+4-5+2+3-5+3+2-5+4+1-5+50-4-1+5-40+4-4+1+3-4+2+2-4+3+1-4+40-4+5-1-3-2+5-3-1+4-30+3-3+1+2-3+2+1-3+30-3+4-1-3+5-2-2-3+5-2-2+4-2-1+3-20+2-2+1+1-2+20-2+3-1-2+4-2-2+5-3-1-4+5-1-3+4-1-2+3-1-1+2-10+1-1+10-1+2-1-1+3-2-1+4-3-1+5-40-5+50-4+40-3+30-2+20-1+1xzy0+1-10+2-20+3-30+4-40+5-5+1-5+4+1-4+3+1-3+2+1-2+1+1-10+10-1+1+1-2+1+2-3+1+3-4+1+4-5+2-5+3+2-4+2+2-3+1+2-20+2-1-1+20-2+2+1-3+2+2-4+2+3-5+3-5+2+3-4+1+3-30+3-2-1+3-1-2+30-3+3+1-4+3+2-5+4-5+1+4-40+4-3-1+4-2-2+4-1-3+40-4+4+1-5+5-50+5-4-1+5-3-2+5-2-3+5-1-4+50-5y ≥ -3z ≤ +3x ≥ -3y ≤ +3z ≥ -3x ≤ +3 +x +z +y -x -z -y flat pointy

Intersecting ranges#

If you need to find hexes that are in more than one range, you can intersect the ranges before generating a list of hexes.

You can either think of this problem algebraically or geometrically. Algebraically, each hexagonally-shaped region is expressed as inequality constraints of the form -N ≤ dx ≤ +N, and we’re going to solve for the intersection of those constraints. Geometrically, each region is a cube in 3D space, and we’re going to intersect two cubes in 3D space to form a cuboid in 3D space, then project back to the x + y + z = 0 plane to get hexes. I’m going to solve it algebraically:

First, we rewrite constraint -N ≤ dx ≤ +N into a more general form, xmin ≤ x ≤ xmax, and set xmin = center.x - N and xmax = center.x + N. We’ll do the same for y and z, and end up with this generalization of the code from the previous section:

var results = []
for each xmin ≤ x ≤ xmax:
    for each max(ymin, -x-zmax) ≤ y ≤ min(ymax, -x-zmin):
        var z = -x-y
        results.append(Cube(x, y, z))

The intersection of two ranges a ≤ x ≤ b and c ≤ x ≤ d is max(a, c) ≤ x ≤ min(b, d). Since a hex region is expressed as ranges over x, y, z, we can separately intersect each of the x, y, z ranges then use the nested loop to generate a list of hexes in the intersection. For one hex region we set xmin = H.x - N and xmax = H.x + N and likewise for y and z. For intersecting two hex regions we set xmin = max(H1.x - N, H2.x - N) and xmax = min(H1.x + N, H2.x + N), and likewise for y and z. The same pattern works for intersecting three or more regions, and can generalize to other shapes (triangles, trapezoids, rhombuses, non-regular hexagons).

flat pointy

Obstacles#

If there are obstacles, the simplest thing to do is a distance-limited flood fill (breadth first search). In this diagram, the limit is set to moves. In the code, fringes[k] is an array of all hexes that can be reached in k steps. Each time through the main loop, we expand level k-1 into level k.

function cube_reachable(start, movement):
    var visited = set() # set of cubes
    add start to visited
    var fringes = [] # array of arrays of cubes
    fringes.append([start])

    for each 1 < k ≤ movement:
        fringes.append([])
        for each cube in fringes[k-1]:
            for each 0 ≤ dir < 6:
                var neighbor = cube_neighbor(cube, dir)
                if neighbor not in visited and not blocked:
                    add neighbor to visited
                    fringes[k].append(neighbor)

    return visited
555515544414145433131313543213121212654111111176510110101165212910543389544456785555678666678 flat pointy

#Rotation

Given a hex vector (difference between one hex and another), we might want to rotate it to point to a different hex. This is simple with cube coordinates if we stick with rotations of 1/6th of a circle.

A rotation 60° right shoves each coordinate one slot to the right:

          [ x,  y,  z]
to    [-z, -x, -y]
to [y,  z,  x]

A rotation 60° left shoves each coordinate one slot to the left:

      [ x,  y,  z]
to        [-y, -z, -x]
to           [  z,  x,  y]
-50+5-5+1+4-5+2+3-5+3+2-5+4+1-5+50-4-1+5-40+4-4+1+3-4+2+2-4+3+1-4+40-4+5-1-3-2+5-3-1+4-30+3-3+1+2-3+2+1-3+30-3+4-1-3+5-2-2-3+5-2-2+4-2-1+3-20+2-2+1+1-2+20-2+3-1-2+4-2-2+5-3-1-4+5-1-3+4-1-2+3-1-1+2-10+1-1+10-1+2-1-1+3-2-1+4-3-1+5-40-5+50-4+40-3+30-2+20-1+1xzy0+1-10+2-20+3-30+4-40+5-5+1-5+4+1-4+3+1-3+2+1-2+1+1-10+10-1+1+1-2+1+2-3+1+3-4+1+4-5+2-5+3+2-4+2+2-3+1+2-20+2-1-1+20-2+2+1-3+2+2-4+2+3-5+3-5+2+3-4+1+3-30+3-2-1+3-1-2+30-3+3+1-4+3+2-5+4-5+1+4-40+4-3-1+4-2-2+4-1-3+40-4+4+1-5+5-50+5-4-1+5-3-2+5-2-3+5-1-4+50-5 +x +z +y -x -z -y flat pointy

As you play with diagram, notice that each 60° rotation flips the signs and also physically “rotates” the coordinates. Take a look at the axis legend on the bottom left to see how this works. After a 120° rotation the signs are flipped back to where they were. A 180° rotation flips the signs but the coordinates have rotated back to where they originally were.

Here’s the full recipe for rotating a position P around a center position C to result in a new position R:

  1. Convert positions P and C to cube coordinates.
  2. Calculate a vector by subtracting the center: P_from_C = P - C = Cube(P.x - C.x, P.y - C.y, P.z - C.z).
  3. Rotate the vector P_from_C as described above, and call the resulting vector R_from_C.
  4. Convert the vector back to a position by adding the center: R = R_from_C + C = Cube(R_from_C.x + C.x, R_from_C.y + C.y, R_from_C.z + C.z).
  5. Convert the cube position R back to to your preferred coordinate system.

It’s several conversion steps but each step is simple. You can shortcut some of these steps by defining rotation directly on axial coordinates, but hex vectors don’t work for offset coordinates and I don’t know a shortcut for offset coordinates. Also see this stackexchange discussion for other ways to calculate rotation.

#Rings

Single ring#

To find out whether a given hex is on a ring of a given radius, calculate the distance from that hex to the center and see if it’s radius. To get a list of all such hexes, take radius steps away from the center, then follow the rotated vectors in a path around the ring.

function cube_ring(center, radius):
    var results = []
    # this code doesn't work for radius == 0; can you see why?
    var cube = cube_add(center, 
                        cube_scale(cube_direction(4), radius))
    for each 0 ≤ i < 6:
        for each 0 ≤ j < radius:
            results.append(cube)
            cube = cube_neighbor(cube, i)
    return results

In this code, cube starts out on the ring, shown by the large arrow from the center to the corner in the diagram. I chose corner 4 to start with because it lines up the way my direction numbers work but you may need a different starting corner. At each step of the inner loop, cube moves one hex along the ring. After 6 * radius steps it ends up back where it started.

flat pointy

The scale, add, and neighbor operations also work on axial and doubled coordinates, so the same algorithm can be used. For offset coordinates, convert to one of the other formats, generate the ring, and convert back.

Spiral rings#

Traversing the rings one by one in a spiral pattern, we can fill in the interior:

function cube_spiral(center, radius):
    var results = [center]
    for each 1 ≤ k ≤ radius:
        results = results + cube_ring(center, k)
    return results
flat pointy

The area of the larger hexagon will be the sum of the circumferences, plus 1 for the center; use this formula to help you calculate the area.

Visiting the hexes this way can also be used to calculate movement range.

#Field of view

Given a location and a distance, what is visible from that location, not blocked by obstacles? The simplest way to do this is to draw a line to every hex that’s in range. If the line doesn’t hit any walls, then you can see the hex. Mouse over a hex to see the line being drawn to that hex, and which walls it hits.

This algorithm can be slow for large areas but it’s so easy to implement that it’s what I recommend starting with.

/> flat pointy

There are many different ways to define what’s “visible”. Do you want to be able to see the center of the other hex from the center of the starting hex? Do you want to see any part of the other hex from the center of the starting point? Maybe any part of the other hex from any part of the starting point? Are there obstacles that occupy less than a complete hex? Field of view turns out to be trickier and more varied than it might seem at first. Start with the simplest algorithm, but expect that it may not compute exactly the answer you want for your project. There are even situations where the simple algorithm produces results that are illogical.

Clark Verbrugge’s guide describes a “start at center and move outwards” algorithm to calculate field of view. Also see the Duelo project, which has an an online demo of directional field of view and code on Github. Also see my article on 2d visibility calculation for an algorithm that works on polygons, including hexagons. For grids, the roguelike community has a nice set of algorithms for square grids (see this and this and this); some of them might be adapted for hex grids.

#Hex to pixel

For hex to pixel, it’s useful to review the size and spacing diagram at the top of the page.

Axial coordinates#

For axial coordinates, the way to think about hex to pixel conversion is to look at the basis vectors. The arrow (0,0)→(1,0) is the q basis vector (x=sqrt(3), y=0) and (0,0)→(0,1) is the r basis vector (x=sqrt(3)/2, y=3/2). The pixel coordinate is q_basis * q + r_basis * r. For example, the hex at (1,1) is the sum of 1 q vector and 1 r vector. A hex at (3,2) would be the sum of 3 q vectors and 2 r vectors.

0, 0+1, 00, +1+1, +1

The code for or is:

function pointy_hex_to_pixel(hex):
    var x = size * (sqrt(3) * hex.q  +  sqrt(3)/2 * hex.r)
    var y = size * (                         3./2 * hex.r)
    return Point(x, y)

This can also be viewed as a matrix multiply, where the basis vectors are the columns of the matrix:

⎡x⎤            ⎡ sqrt(3)   sqrt(3)/2 ⎤   ⎡q⎤
⎢ ⎥  =  size × ⎢                     ⎥ × ⎢ ⎥
⎣y⎦            ⎣    0          3/2   ⎦   ⎣r⎦

The matrix approach will come in handy later when we want to convert pixel coordinates back to hex coordinates. To invert the process of hex-to-pixel into a pixel-to-hex process, we will invert the hex-to-pixel matrix into a pixel-to-hex matrix.

Offset coordinates#

For offset coordinates, we need to offset either the column or row number (it will no longer be an integer).

function oddr_offset_to_pixel(hex):
    var x = size * sqrt(3) * (hex.col + 0.5 * (hex.row&1))
    var y = size * 3/2 * hex.row
    return Point(x, y)
Offset coordinates: 

Unfortunately offset coordinates don’t have basis vectors that we can use with a matrix. This is one reason pixel-to-hex conversions are harder with offset coordinates.

Another approach is to convert the offset coordinates into cube/axial coordinates, then use the cube/axial to pixel conversion. By inlining the conversion code then optimizing, it will end up being the same as above.

Doubled coordinates#

Doubled makes many algorithms simpler than offset.

function doublewidth_to_pixel(hex):
    var x = size * sqrt(3)/2 * hex.col
    var y = size * 3/2 * hex.row
    return Point(x, y)

function doubleheight_to_pixel(hex):
    var x = size * 3/2 * hex.col
    var y = size * sqrt(3)/2 * hex.row
    return Point(x, y)

#Pixel to Hex

One of the most common questions is, how do I take a pixel location (such as a mouse click) and convert it into a hex grid coordinate? I'll show how to do this for axial or cube coordinates. For offset coordinates, the simplest thing to do is to convert the cube to offset at the end.

-7, -3-7, -2-7, -1-7, 0-7, +1-7, +2-7, +3-7, +4-7, +5-7, +6-7, +7-7, +8-7, +9-7, +10-7, +11-6, -4-6, -3-6, -2-6, -1-6, 0-6, +1-6, +2-6, +3-6, +4-6, +5-6, +6-6, +7-6, +8-6, +9-6, +10-5, -4-5, -3-5, -2-5, -1-5, 0-5, +1-5, +2-5, +3-5, +4-5, +5-5, +6-5, +7-5, +8-5, +9-5, +10-4, -5-4, -4-4, -3-4, -2-4, -1-4, 0-4, +1-4, +2-4, +3-4, +4-4, +5-4, +6-4, +7-4, +8-4, +9-3, -5-3, -4-3, -3-3, -2-3, -1-3, 0-3, +1-3, +2-3, +3-3, +4-3, +5-3, +6-3, +7-3, +8-3, +9-2, -6-2, -5-2, -4-2, -3-2, -2-2, -1-2, 0-2, +1-2, +2-2, +3-2, +4-2, +5-2, +6-2, +7-2, +8-1, -6-1, -5-1, -4-1, -3-1, -2-1, -1-1, 0-1, +1-1, +2-1, +3-1, +4-1, +5-1, +6-1, +7-1, +80, -70, -60, -50, -40, -30, -20, -10, 00, +10, +20, +30, +40, +50, +60, +7+1, -7+1, -6+1, -5+1, -4+1, -3+1, -2+1, -1+1, 0+1, +1+1, +2+1, +3+1, +4+1, +5+1, +6+1, +7+2, -8+2, -7+2, -6+2, -5+2, -4+2, -3+2, -2+2, -1+2, 0+2, +1+2, +2+2, +3+2, +4+2, +5+2, +6+3, -8+3, -7+3, -6+3, -5+3, -4+3, -3+3, -2+3, -1+3, 0+3, +1+3, +2+3, +3+3, +4+3, +5+3, +6+4, -9+4, -8+4, -7+4, -6+4, -5+4, -4+4, -3+4, -2+4, -1+4, 0+4, +1+4, +2+4, +3+4, +4+4, +5+5, -9+5, -8+5, -7+5, -6+5, -5+5, -4+5, -3+5, -2+5, -1+5, 0+5, +1+5, +2+5, +3+5, +4+5, +5+6, -10+6, -9+6, -8+6, -7+6, -6+6, -5+6, -4+6, -3+6, -2+6, -1+6, 0+6, +1+6, +2+6, +3+6, +4+7, -10+7, -9+7, -8+7, -7+7, -6+7, -5+7, -4+7, -3+7, -2+7, -1+7, 0+7, +1+7, +2+7, +3+7, +4
  1. First we invert the hex to pixel conversion. This will give us a fractional hex coordinate, shown as a small red circle in the diagram.
  2. Then we find the hex containing the fractional hex coordinate, shown as the highlighted hex in the diagram.

To convert from hex coordinates to pixel coordinates, we multiplied q, r by basis vectors to get x, y. This was a matrix multiply:

⎡x⎤            ⎡ sqrt(3)   sqrt(3)/2 ⎤   ⎡q⎤
⎢ ⎥  =  size × ⎢                     ⎥ × ⎢ ⎥
⎣y⎦            ⎣    0          3/2   ⎦   ⎣r⎦

Matrix for: or

To invert the hex-to-pixel process into a pixel-to-hex process we invert the pointy-top hex-to-pixel matrix into a pixel-to-hex matrix:

⎡q⎤     ⎡ sqrt(3)/3     -1/3 ⎤   ⎡x⎤
⎢ ⎥  =  ⎢                    ⎥ × ⎢ ⎥ ÷ size
⎣r⎦     ⎣     0          2/3 ⎦   ⎣y⎦

This calculation will give us fractional axial coordinates (floats) for q and r. The hex_round() function will convert the fractional axial coordinates into integer axial hex coordinates. Here’s the code:

function pixel_to_pointy_hex(point):
    var q = (sqrt(3)/3 * point.x  -  1./3 * point.y) / size
    var r = (                        2./3 * point.y) / size
    return hex_round(Hex(q, r))
Code for: or

That’s three lines of code to convert a pixel location into an axial hex coordinate. If you use offset coordinates, use return cube_to_{odd,even}{r,q}(cube_round(Cube(q, -q-r, r))).

There are many other ways to convert pixel to hex; see this page for the ones I know of.

#Rounding to nearest hex

Sometimes we’ll end up with a floating-point cube coordinate (x, y, z), and we’ll want to know which hex it should be in. This comes up in line drawing and pixel to hex. Converting a floating point value to an integer value is called rounding so I call this algorithm cube_round.

With cube coordinates, x + y + z = 0, even with floating point cube coordinates. So let’s round each component to the nearest integer, (rx, ry, rz). However, although x + y + z = 0, after rounding we do not have a guarantee that rx + ry + rz = 0. So we reset the component with the largest change back to what the constraint rx + ry + rz = 0 requires. For example, if the y-change abs(ry-y) is larger than abs(rx-x) and abs(rz-z), then we reset ry = -rx-rz. This guarantees that rx + ry + rz = 0. Here’s the algorithm:

function cube_round(cube):
    var rx = round(cube.x)
    var ry = round(cube.y)
    var rz = round(cube.z)

    var x_diff = abs(rx - cube.x)
    var y_diff = abs(ry - cube.y)
    var z_diff = abs(rz - cube.z)

    if x_diff > y_diff and x_diff > z_diff:
        rx = -ry-rz
    else if y_diff > z_diff:
        ry = -rx-rz
    else:
        rz = -rx-ry

    return Cube(rx, ry, rz)

For non-cube coordinates, the simplest thing to do is to convert to cube coordinates, use the rounding algorithm, then convert back:

function hex_round(hex):
    return cube_to_axial(cube_round(axial_to_cube(hex)))

The same would work if you have oddr, evenr, oddq, or evenq instead of axial.

Implementation note: cube_round and hex_round take float coordinates instead of int coordinates. If you’ve written a Cube and Hex class, they’ll work fine in dynamically typed languages where you can pass in floats instead of ints, and they’ll also work fine in statically typed languages with a unified number type. However, in most statically typed languages, you’ll need a separate class/struct type for float coordinates, and cube_round will have type FloatCube → Cube. If you also need hex_round, it will be FloatHex → Hex, using helper function floatcube_to_floathex instead of cube_to_hex. In languages with parameterized types (C++, Haskell, etc.) you might define Cube<T> where T is either int or float. Alternatively, you could write cube_round to take three floats as inputs instead of defining a new type just for this function.

#Map storage in axial coordinates

One of the common complaints about the axial coordinate system is that it leads to wasted space when using a rectangular map; that's one reason to favor an offset coordinate system. However all the hex coordinate systems lead to wasted space when using a triangular or hexagonal map. We can use the same strategies for storing all of them.

0, 30, 40, 50, 61, 21, 31, 41, 51, 62, 12, 22, 32, 42, 52, 63, 03, 13, 23, 33, 43, 53, 64, 04, 14, 24, 34, 44, 55, 05, 15, 25, 35, 46, 06, 16, 26, 3r = 00, 01, 02, 03, 04, 05, 06, 0r = 10, 11, 12, 13, 14, 15, 16, 1r = 20, 21, 22, 23, 24, 25, 26, 2r = 30, 31, 32, 33, 34, 35, 36, 3r = 40, 41, 42, 43, 44, 45, 46, 4r = 50, 51, 52, 53, 54, 55, 56, 5r = 60, 61, 62, 63, 64, 65, 66, 6q = 0q = 1q = 2q = 3q = 4q = 5q = 6
Shape:
array[r][q - max(0, N-r)] array[2][q - 1]array[2][2]

Notice in the diagram that the wasted space is on the left and right sides of each row (except for rhombus maps) This gives us three strategies for storing the map:

  1. Ignore the problem. Use a dense array with nulls or some other sentinel at the unused spaces. At most there’s a factor of two for these common shapes; it may not be worth using a more complicated solution.
  2. Use a hash table instead of dense array. This allows arbitrarily shaped maps, including ones with holes. When you want to access the hex at q,r you access hash_table(hash(q,r)) instead. Encapsulate this into the getter/setter in a map class so that the rest of the game doesn’t need to know about it.
  3. Slide the rows to the left, by starting the arrays at the leftmost column instead of at 0. This removes the waste on the left. Optionally, use variable sized rows. In many languages a 2D array is an array of arrays; there’s no reason the arrays have to be the same length. This removes the waste on the right.

Let’s take a closer look at how to use an array of arrays. There’s an array for each row, but we need to know the first column of that row. Map hex q,r is stored at array[r - first_row][q - first_column(r)]. Encapsulate this into the getter/setter in a map class so that the rest of the game doesn’t need to know about it.

  • For the rectangle shaped map shown here, first_column(r) == -floor(r/2), so Hex(q, r) is stored at array[r][q + floor(r/2)]. This turns out to be equivalent to converting the coordinates into odd-r offset grid coordinates.
  • For the triangle shaped map shown here, first_column(r) == 0, so you’d access array[r][q] — how convenient! For triangle shaped maps that are oriented the other way (not shown in the diagram), it’s array[r][q+r].
  • For hexagon shaped maps of radius N centered at Hex(N, N, -2*N), first_column(r) == max(0, N-r), so you’d access array[r][q - max(0, N-r)].
  • For the rhombus shaped map here, everything matches nicely, so you can use array[r][q].

Your maps won’t look exactly like the ones here so you’ll need to adapt first_row and first_column(r) to your own maps. If you are using flat-topped hexes, it will be easier to swap the roles of the rows and columns, and use array[q - first_column][r - first_row(q)].

#Wraparound maps

In some games you want the map to “wrap” around the edges. In a square map, you can either wrap around the x-axis only (roughly corresponding to a sphere) or both x- and y-axes (roughly corresponding to a torus). Wraparound depends on the map shape, not the tile shape. To wrap around a rectangular map is easy with offset coordinates. I’ll show how to wrap around a hexagon-shaped map with cube coordinates.

Corresponding to the center of the map, there are six “mirror” centers. When you go off the map, you subtract the mirror center closest to you until you are back on the main map. In the diagram, try exiting the center map, and watch one of the mirrors enter the map on the opposite side.

The simplest implementation is to precompute the answers. Make a lookup table storing, for each hex just off the map, the corresponding cube on the other side. For each of the six mirror centers M, and each of the locations on the map L, store mirror_table[cube_add(M, L)] = L. Then any time you calculate a hex that’s in the mirror table, replace it by the unmirrored version. See stackoverflow for another approach.

For a hexagonal shaped map with radius N, the mirror centers will be Cube(2*N+1, -N, -N-1) and its six rotations.

flat pointy

#Pathfinding

If you’re using graph-based pathfinding such as A* or Dijkstra’s algorithm or Floyd-Warshall, pathfinding on hex grids isn’t different from pathfinding on square grids. The explanations and code from my pathfinding tutorial will work equally well on hexagonal grids.

flat pointy

Mouse overTouch a hex in the diagram to see the path to it. Click or drag to toggle walls.

  1. Neighbors. The sample code I provide in the pathfinding tutorial calls graph.neighbors to get the neighbors of a location. Use the function in the neighbors section for this. Filter out the neighbors that are impassable.
  2. Heuristic. The sample code for A* uses a heuristic function that gives a distance between two locations. Use the distance formula, scaled to match the movement costs. For example if your movement cost is 5 per hex, then multiply the distance by 5.

#More

I have an guide to implementing your own hex grid library, including sample code in C++, Java, C#, Javascript, Haxe, and Python.

The code that powers this page is partially procedurally generated! The core algorithms are in lib.js, generated from my guide to implementation. There are a few more algorithms in hex-algorithms.js. The interactive diagrams are in diagrams.js and index.js, using Vue.js to inject into the templates in index.bxml (xhtml I feed into a preprocessor).

There are more things I want to do for this guide. I’m keeping a list on Trello. Do you have suggestions for things to change or add? Comment below.