Tagged Questions
The hextiles tag has no wiki summary.
18
votes
2answers
4k views
Hexagonal Grid Coordinates To Pixel Coordinates
I am working with a hexagonal grid. I have chosen to use this coordinate system because it is quite elegant.
This question talks about generating the coordinates themselves, and is quite useful. My ...
8
votes
5answers
710 views
Distance between tiles in a hexagonal field
For a square field the distance between tile A and B it's just a vector length:
distance = sqrt(sqr(x1-x2))+sqr(y1-y2))
How do I get the length of one of shortest paths between two tiles as ...
6
votes
2answers
555 views
Raytracing (LoS) on 3D hex-like tile maps
Greetings,
I'm working on a game project that uses a 3D variant of hexagonal tile maps. Tiles are actually cubes, not hexes, but are laid out just like hexes (because a square can be turned to a cube ...
3
votes
4answers
400 views
Algorithm for creating cells by spiral on the hexagonal field
Help to find an algorithm for creating cells by spiral on the hexagonal field.
Look at the image:
Let's imagine an dimensionless 2d array.
The X axis is the blue line, Y is horizontal, spiral is ...
3
votes
4answers
2k views
How do I represent a hextile/hex grid in memory?
Say I'm building a board game with a hextile grid, like Settlers of Catan:
Note that each vertex and edge may have an attribute (a road and settlement above).
How would I make a data structure ...
3
votes
2answers
2k views
Drawing a hex grid in Flash?
What's the easiest way to draw a hex grid algorithmically? How should I present them in data?
For example, in a square grid, I could just save x-y coordinates..
3
votes
1answer
1k views
WPF “hex grid” component
Jumping into the world of WPF custom controls, and was wondering what the best way to design a HexGrid control would be? Think your favorite table-top war game; or, equally likely, your favorite ...
2
votes
2answers
370 views
How do I recursively draw a hex map in opengl?
I'm new to GL and wanted to create a tiled map as a self tuorial. I want to create a small (maybe 7 hexes wide / tall) hex map. My first thought was to just create a method to draw one hex and then ...
1
vote
1answer
201 views
pan control for hextiles
I need to render a large number of hextiles on a canvas. I would like to make this such that I render only the tiles that are visible to the user and load additional hextiles as the user scrolls ...
1
vote
1answer
527 views
Books about hex board war game programming? [closed]
I plan to write a hex board war game. Any books/sites to recommend? Probably require:
game strategy AI programming
board (hex) representation
turn-based game loop
...
(community wiki please)
1
vote
2answers
425 views
Basic hexbin with R?
I have results from a survey. I am trying to create a graphic displaying the relationship of two variables: "Q1" and "Q9.1". "Q1" is the independent and "Q9.1" is the dependent. Both variables have ...
1
vote
3answers
530 views
Any code samples open-source-engines, or open source hex tile games, references for writing Hex Tile based Games?
Using other questions on here I found Amit's Page on Games including a section on Hex Tiles which also links to a game coding wiki here.
I am looking for suggestions:
(a) libraries, engines or code ...
1
vote
5answers
413 views
Recursively created linked lists with a class, C++
I'm using C++ to recursively make a hexagonal grid (using a multiply linked list style). I've got it set up to create neighboring tiles easily, but because I'm doing it recursively, I can only really ...
1
vote
2answers
230 views
Selection of neighbors cells in a hexagonal field
Imagine hexagonal space with 3 dimensions.
Each tile has coordinates XYZ.
I need to select a given cell neighbors in the same plane.
With SQL it's looks like:
$tbDir = $y % 2 == 0 ? -1 : 1;
...
0
votes
1answer
261 views
OpenGL: What is the fastest way to paint hex maps?
I want to paint a hex map with each hex a (potentially) different color. The shared border is black and the interior is a solid color. If I want to paint a 1920x1080 display, how can I do this the ...