Finito!


Well, that was fun! The enemy AI came together quite quickly. I know it probably seems a bit odd to leave that till the very end, but I knew it would be arguably the easiest part of the whole thing.

In the end the enemy logic looks like this:

  1. Always start by attacking on current tile, if mutated
  2. Then try to mutate (find nearby toxic ooze)
  3. Then move to attack with a mutated unit
  4. Then try to move to an undiscovered hex
  5. Finally, fall back to randomly moving to an empty hex tile

Sadly, towards the very end I noticed that my distance calculation was completely wrong... 🤦‍♂️ I was using Vector3Int.Distance which works fine for grids but obviously doesn't account for the even/odd nature of a hex grid. So I whipped together a quick solution based on this excellent blog post:

private Vector3Int OddrToCube(Vector3Int pos)
{
    var x = pos.x - (pos.y - (pos.y & 1)) / 2;
    var y = pos.y;
    var z = -x - y;
    return new Vector3Int(x, y, z);
} private int CubeDistance(Vector3Int a, Vector3Int b)
{
    return (Mathf.Abs(a.x - b.x) + Mathf.Abs(a.y - b.y) + Mathf.Abs(a.z - b.z)) / 2;
} public int AdjustedDistance(Vector3Int a, Vector3Int b)
{
    Vector3Int ca = OddrToCube(a);
    Vector3Int cb = OddrToCube(b);
    return CubeDistance(ca, cb);
}

I also took the opportunity to add some variety in the survivor cards by varying the attack point modifiers.

And with that, my 7DLR jam entry is complete! Sadly this will have to go on the shelf for a bit, but I look forward to possibly expanding on it in the future. Thanks for following!

Files

Infector web build.zip Play in browser
Mar 06, 2020

Leave a comment

Log in with itch.io to leave a comment.