Skip to main content

Navigation Arrays and Navmeshes.

Today I worked on the prototype navmesh for the game.
Most 3d games use a navigation mesh, it's easier to store data about where you can walk in a mesh than in text arrays, the mesh can also be edited easier than rewriting an array.

Unfortunately with a random dungeon the different sections have separate navigation meshes, and in Blender you can't merge the meshes. So in this project I'm using the meshes to generate the list of walkable tiles and then they will be deleted and the data will be kept as an array. I'll be using simple neighbor checking to create a graph that can then be used with A* pathfinding.

It's all very old fashioned, but for me it's interesting to use these methods because it allows me to understand what's going on at a very basic level. I don't really expect to improve on modern AI but I can find what's good for my project and leave what I don't need.

Here's the walkmesh:

You can see the red areas are walkable, the green areas are a negative mask, I'll be using green walkmeshes to show where you can't walk. They'll be added to props to override the existing walkmesh when the prop is added.

Actually thinking about it, green for don't walk and red for walk is kind of counter intuitive. :)
Have to change that in the next update.

Here's a closer look:

The result is a a set of dictionaries, one for each tile. I'll be accessing the dictionaries separately when building the graph for A* so I don't have to access the whole set of data, hopefully speeding up performance a bit. Tiles which are out of range of the character's movement range will not be added to the graph. Characters will pathfind to a selected square inside their move radius, but it's up to the player to do long distance pathfinding each turn.

The AI will at first try to generate a path to the player using a cropped rectangle around the position of the player and the monster. If it can't reach it will expand the search area. This means that in some cases the A* routine may need to be run twice, however, in most cases it will work the first time, using much less resources than a full level graph.

I'm also thinking of doing a simple flood fill at the beginning of the AI's movement phase to find which players are accessible, or which are on islands (in a locked room for example).

Here's a quick video that shows the unfinished result:

Comments

Popular posts from this blog

Advice needed on tilesets...

I need some advice on which is the best way to handle building the dungeon. Right now I'm using prefabs for my dungeon, they have a north south east and west section for each "room": The basic tileset. This has several advantages, and also several disadvantages. Firstly I can have curved rooms, I can have tunnels and other interesting shapes. The tilesets can look quite nice with a little work. On the other hand I can't easily get the navigation data before building the map and once the map has been built I can't make changes to the layout, like having active pit traps or believable secret doors. Although the rooms are interesting, they are quite repetitive, and it takes a lot of effort to make even a few different variations. Also rooms are constrained to one size. A newer version of the tileset with a lot of variant parts for making more interesting rooms. To create a tile set is a real headache too. Planning how to lay out the UVs, trying to cra...

Upstairs / Downstairs.

I've decided to make my prefabs multilevel. Later this should allow me to add pit traps and other great stuff. It also makes it easier to line up stairs so that you can exit them on the same co-ordinates where you entered them. The prefab editor is pretty much finished, it just needs some code for loading up prefabs from a saved dictionary, so that they can be checked or edited. The entries will need to be forwards compatible, so I'll be loading each tile and then translating the indexes to a new array, that way if I add extra indexes or extra info (like traps or puzzles) I'll be able to update existing prefabs to work with the new standard. Click for a video.

Video Diary 8

Things are moving along well, there's been a lot of progress on the action manager side of things. Actions have finally moved to the UI, so you can initiate actions by clicking the appropriate button. I've set up some dummy actions to show what happens visually when actions are taken, but the actual dice rolls and such are yet to be integrated. The UI objects are also being added, though some are non functional or empty at the moment. Click on the image to see this week's development video. Every time I add something big I also add about a dozen small things. Like the selection box visualization. Previously this was using render.drawline, and old fashioned Blender function which can be impossible to see at certain resolutions, or at certain frequencies. I replaced it with a function that adds planes of the right size and scale in the right location. I also made all characters a little bigger. I still need to do some work with vectors and final target locations t...