mastodon.gamedev.place is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mastodon server focused on game development and related topics.

Server stats:

5.4K
active users

I'm too tired for my historians mind to try to find out how to calculate the tile coordinate on my map for any given mouse position. 64 by 64 pixels but it's not a square but a diamond, so about half of the 64x64 box in all four corners is not this tile and they're not even arranged neatly. Anyone with a solution?

@TommyvanSon Try converting the mouse coordinates to a world-aligned coordinate system.

Let's say
pos_x = mouse_x + mouse_y and
pos_y = mouse_x - mouse_y.

Notice that the first is an addition and the second is a subtraction. You may need to scale the result. IDK if it makes sense, it's midnight here.

@essojadojef in my initial idea, I would first find the nearest product of 32 for x and y and then do something with the remainder. It's that what you mean? When the mouse position is 763x523 for instance, I can't see how pos_x being 986 and pos_y 240 would bring me much further. Or don't I understand?

763÷32 is 23,... and 23×32=736 which gives me 27 to work with. Is this the number to work with? And 11 for y. I would imagine that being a good option.

@TommyvanSon The axis x + y and x - y are diagonal lines aligned with the diamond grid.

Here the red line is made of point where x - y equals 0, and the blue line is made of points where x + y give the same result (not 0, that line would be outside of the screen). Then you perform the division and remainder on the new coordinate system.

@TommyvanSon This works for all points because when moving down-right you increase both x and y, so the result of x - y doesn't change (first axis), and when moving down-left you increase y and decrease x, so the result of x + y reamins the same (second axis).

The results may be different depending on if your engine uses y positive for up or down but the concept should remain the same.

@TommyvanSon Another approach I just realized is to split the grid (the original screen-aligned one) into smaller cells the size of a quarter of a tile and align that grid so only two diamonds are in each cell. Firsst you calculate which cell of the grid the mouse is in, then which of the two diamond for that cell.

Tommy van Son ✔

@essojadojef Yes, that's the approach I was talking about this morning. I think I'll have to try the approach(es) in code. The quarter tile thing feels easier to my brain. Thank you very much!