Page 1 of 1

[ZScript] A* Pathfinding

Posted: Thu Oct 12, 2017 5:37 pm
by dodopod
This mod enables A* pathfinding through a network of Nav Points. In order to use it, you'll need to place Nav Points at all the intersections of your map. Connections between Nav Points are generated automatically. Then, create an actor descending from Pathfinder, and use the A_Star function where you would normally use A_Chase. There is a monster and a demo level included (type `map maze` in the console). I recommend using it with `am_cheat 2` so you can see the monster navigating the maze. This is just a prototype, so it isn't terribly optimized, and still has a few problems. Feel free to use or modify it, as long as I'm credited.

Download

Update v0.2

Posted: Fri Oct 27, 2017 4:03 pm
by dodopod
This update changes pathfinding so that it occurs through a navigation mesh built automatically from the level geometry. At present, the algorithm requires all reachable sectors to be convex polygons, though it tends to work even if they're not. In order to enable pathfinding, inherit an actor from Pathfinder. In addition to a 'See' state, it must also have a 'See.Plan' state. Then add these two action functions:

A_Chase2(StateLabel meleeState = 'Melee', StateLabel rangedState = 'Missile', StateLabel planState = 'See.Plan')

Makes the monster chase its target as long as they are in the same sector, or it has an up-to-date path to its target. Goes in the 'See' state.

Params:
  • meleeState: The state to jump to when the monster decides to perform a melee attack.
  • rangedState: The state to jump to when the monster decides to perform a ranged attack.
  • planState: The state to jump to when the monster doesn't have a path to follow.
A_Star(StateLabel meleeState = 'Melee', StateLabel rangedState = 'Missile', StateLabel seeState = 'See')

Creates a plan to reach the target, or waits if it's unreachable. Goes in the 'See.Plan' state.

Params:
  • meleeState: The state to jump to when the monster decides to perform a melee attack.
  • rangedState: The state to jump to when the monster decides to perform a ranged attack.
  • seeState: The state to jump to when the monster finds a path.
Download

Re: [ZScript] A* Pathfinding

Posted: Sun Feb 11, 2018 12:13 pm
by Major Cooke
Heh, pretty nice. Shame this doesn't work for maps like this.

Re: [ZScript] A* Pathfinding

Posted: Sat Aug 04, 2018 11:35 pm
by Nash
Wow, this is interesting!

What would be cool is to see the navmesh build around solid actors (for things like static mesh decorations), and to see chase movement that is velocity-based instead of step-based (so that the monster can smoothly rotate in more than 8 angles and not have stepped movement). :D

Re: [ZScript] A* Pathfinding

Posted: Tue Feb 12, 2019 10:27 am
by ZippeyKeys12
Nash wrote:What would be cool is to see the navmesh build around solid actors (for things like static mesh decorations), and to see chase movement that is velocity-based instead of step-based (so that the monster can smoothly rotate in more than 8 angles and not have stepped movement). :D
It'd be better if there was a virtual function called (or first-class functions) that you could control movement from. Then you could decide between the base movement, steering behaviors or whatever your heart desires. Also objects should just be avoided with basic obstacle avoidance like ORCA or RVO, otherwise actors may hit each other in movement or even when one is static.

Re: [ZScript] A* Pathfinding

Posted: Fri May 03, 2019 2:15 pm
by Armaetus
How does this handle with mods that alter monsters? Would be interesting to see Oblige generated maps using this..

Re: [ZScript] A* Pathfinding

Posted: Mon Jul 29, 2019 3:51 pm
by Drake Raider
Sorry to necro, but is there a way to make this universal at all?
I was thinking adding a generic tnt1 A_Star state to Actor, and replacing A_Chase's definition with that of A_Chase2, but I don't know enough about zScript to know if it works that way. Sure would make maps like Eternal Doom III great with custom monsters mods.

Re: [ZScript] A* Pathfinding

Posted: Fri Oct 11, 2019 7:32 am
by Nash
@dodopod: how do you set this up with doors? It seems to not do any planning at all as soon as I cross into and beyond a door sector. I've tried all the door specials. Also doesn't seem to plan successfully if there the ceiling is too low (but still passable/walkable). I am trying this with v0.2.

Re: [ZScript] A* Pathfinding

Posted: Fri Oct 11, 2019 11:44 am
by Cherno
I only ever used the initial version (no use for a nav mesh), and I just dug into the code which ios fairly easy to understand, and edited the way connections are made between points to my liking. For example, I aded a linetrace function.

Re: [ZScript] A* Pathfinding

Posted: Fri May 14, 2021 4:57 pm
by Hidden Hands
If anyone can help clarify how to script this I would be most appreciative. Just took a look and it's very much on the lines of what I'm looking for, but I cannot get to grips with how to make this work in my game.

Re: [ZScript] A* Pathfinding

Posted: Fri May 14, 2021 6:31 pm
by Cherno
1. Place NavPoints around the map.
2. Have an actor inherit from Pathfinder.
3. [Optional] Set a target for the actor (optional because this is commonly done by A_Look for monsters automatically)
4. Instead of A_Chase,have the actor call A_Star to follor the path (if any).